A have a list box with check boxes (I removed the part about alignment, width, margin as not related to the case): <ListBox ItemsSource ="{Binding SItemCollection}" <ListBox.ItemTemplate> <DataTemplate> <CheckBox Content="{Binding Path=Item.Code}" IsChecked="{Binding IsChecked}"/> </DataTemplate> </ListBox.ItemTemplate> I have a class SItem inside my ViewModel, which stores two fields – CachedStr which I get from Cache and […]
The post Get selected items from a list box with check boxes appeared first on BlogoSfera.