0

私は次のように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>
4

1 に答える 1

2

バインディングの実装の背後にあるクラスが必要INotifyPropertyChangedです。次に、プロパティを変更すると、NotifyPropertyChangedイベントが発生し、バインディングが自動的に更新されます。

于 2012-12-06T15:51:39.733 に答える