如何更新ListBox项目中的控件

时间:2012-12-06 15:49:20

标签: c# wpf xaml checkbox listbox

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

<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>

1 个答案:

答案 0 :(得分:2)

您应该拥有绑定工具INotifyPropertyChanged后面的类。然后,当您更改属性时,触发NotifyPropertyChanged事件,绑定应自动更新。