我有一系列物品,例如:
class Myclass : INotifyPropertyChanged
{
public bool Selected { get; set; }
public string ChosenValue { get; set; }
}
然后我就有了这个类的可观察集合:
public ObservableCollection<Myclass> _myObColl
最后,我有一个绑定到 _myObColl 的列表框和一个绑定到另一个集合的单独组合框。
我想要更新组合框以更新 _myObColl 列表中所有项目的 ChosenValue 属性。但我不知道怎么做。
组合框选定的项目绑定到视图模型中名为 currselection 的属性。我想要做的是将 Myclass 的 ChosenValue 属性绑定到 currselection 值。但我该怎么做呢?也许我不应该考虑绑定,但我想不出另一种方法来更新项目的 ChosenValue 属性。我尝试了组合的 SelectionChanged 事件来循环_myObColl。除非在更改组合框后将某个项目标记为选中,否则此方法有效。
<ComboBox ItemsSource="{Binding Path=DataContext.lstComboList , ElementName=PS4}" SelectedItem="{Binding Path=currselection, Mode=TwoWay}" Margin="10,10,10,10" Width="100"/>
<ListBox ItemsSource="{Binding _myObColl}" Margin="10,10,0,0" >
<ListBox.ItemTemplate x:Uid="asdasd" >
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<CheckBox Grid.Column ="3" Width="50" VerticalAlignment="Center" Margin="10" IsChecked="{Binding Path=PropA, Mode=TwoWay}"/>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
潇湘沐
相关分类