Hi,
I using ListView:
ItemWidth="{Binding (ListView.View).ItemWidth, RelativeSource={RelativeSource AncestorType=ListView}}"
MinWidth="{Binding ItemWidth, RelativeSource={RelativeSource Self}}"
ItemHeight="{Binding (ListView.View).ItemHeight, RelativeSource={RelativeSource AncestorType=ListView}}" />
I see 8 elements (checkbox + label), I select 2 or more element, but in code behind if I would get selected item with:
chkListViewSampleStatus.SelectedItems
It returns always one element.
Why?
Thanks.

Roberto SalemiPosted Apr 29, 2015, 5:41 AM
Roberto SalemiPosted Apr 29, 2015, 4:04 AM
I understand the problem.
SelectedItems returns me the item of ListView highlighted.
I would know the item where checkbox is selected.
Roberto SalemiPosted Apr 29, 2015, 3:44 AM
i removed
IsSynchronizedWithCurrentItem="True"
and I added
SelectionMode="Multiple"
ma it not works anyway.
Akhil GargPosted Apr 28, 2015, 1:57 PM