这是ListBox代码:
<ListBox x:Name="courseslistview"
ItemsSource="{Binding .}"
FontSize="18.667"
FontFamily="Trebuchet MS"
LayoutUpdated="courseslistview_LayoutUpdated">
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox Content="{Binding .}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如何使用C#获取上述ListBox中所有选中的复选框?
答案 0 :(得分:15)
最好将CheckBox
绑定到IsSelected
的{{1}}属性,如下所示:
ListBoxItem
然后,您可以从ListBox.SelectedItems集合中获取已选中/已选择的项目。您还必须将SelectionMode设置为多个。