Abhilash J A

Abhilash J A

  • NA
  • 2.4k
  • 582k

WPF - How to get all checked selected items from Listview?

Dec 29 2016 2:51 AM
Hello everyone,
 
I have Listview items with checkboxes and image buttons. Please find the screen show from below url.
 
 
 
I want two scenario...

1) After select one row, then click on fist image button - want to get one row listview details in code behind (Now it's happening). Please find the screen show from below url.
 
 
 
2) After select one or more checkboxes then click on the second image button - want to get whole checked items from the listview. Please find the screen show from below url.
 
 
 
But after applying this code not getting all checkbox selected items. 
  1. <GridViewColumn>  
  2.                                            <GridViewColumn.CellTemplate>  
  3.                                                <DataTemplate>  
  4.                                                    <CheckBox Tag="{Binding UserId}" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" />  
  5.                                                </DataTemplate>  
  6.                                            </GridViewColumn.CellTemplate>  
  7.                                        </GridViewColumn >  
 I know this is because of not using this code inside the checkbox shown below. 
  1. <CheckBox Tag="{Binding UserId}" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" IsChecked="{Binding RelativeSource={RelativeSource AncestorType=ListViewItem},Path=IsSelected}" />  
But I don't want this code because after implementing this code, then click on the listview's row automatically selecting checkbox too. 
  1. foreach (DocumentsUser item in listView1.SelectedItems) /*After select all check-boxes, then want to get all listview items here.*/  
  2. {  
  3.   
  4. }  
 
 

Answers (3)