我正在使用Caliburn.Micro编写一个WPF应用程序。我想根据带有复选框的列表框中的选中项来更新名称列表。
XAML:
<ListBox ItemsSource="{Binding Names}"> <ListBox.ItemTemplate> <HierarchicalDataTemplate> <CheckBox Content="{Binding Value}" IsChecked="{Binding IsChecked}" /> </HierarchicalDataTemplate> </ListBox.ItemTemplate>