Hi,
I'm trying to bind a checkbox to the "IsSelected" property of the ListViewItem.
<DataTemplate x:Key="Printer3dItemTemplate">
<ViewCell>
<ViewCell.View>
<buttons:SfCheckBox
IsEnabled="False"
IsChecked="{Binding IsSelected, Source={x:RelativeSource AncestorType={x:Type listView:ListViewItem}, AncestorLevel=1}}"
>
</buttons:SfCheckBox>
</ViewCell.View>
</ViewCell>
</DataTemplate>
This template is assigned to the "ItemTemplate" & "SelectedItemTemplate" Property of my listview.
However the checkbox isn't be checked once the item is selected in the listview.
Thank you,
Andreas