0

我有一个ListBox定义如下。我有需要以编程方式检查/取消选中CheckBoxListView项目(只想实现全选/取消全选操作)。实现这一目标的最佳方法是什么?

<ListBox Margin="0,0,10,0" Name="listViewChanges" SelectionMode="Multiple">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
                <CheckBox x:Name="lblChangedSelected" IsChecked="{Binding Selected}" VerticalAlignment="Center" VerticalContentAlignment="Center" Margin="10,0,0,0"></CheckBox>
                <Label x:Name="lblChangedStatus" Content="{Binding Status}" VerticalContentAlignment="Center"></Label>
                <Label x:Name="lblChangedPath" Content="{Binding Path}" VerticalContentAlignment="Center"></Label>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>
4

1 回答 1

2

您应该拥有绑定实现背后的类INotifyPropertyChanged。然后,当您更改属性时,触发NotifyPropertyChanged事件并且绑定应该自动更新。

于 2012-12-06T15:51:39.733 回答