我有一个 WPF ComboBox,并且正在使用 MVVM 绑定 ItemsSource 和 SelectedItem 属性。基本上我想要做的是当用户在组合框中选择特定项目时,组合框会选择不同的项目。
<ComboBox ItemsSource="{Binding TestComboItemsSource}" SelectedItem="{Binding TestComboItemsSourceSelected}"></ComboBox>
出于演示目的,我还有一个按钮来更新 SelectedItem。
<Button Command="{Binding DoStuffCommand}">Do stuff</Button>
我的视图模型中有这个:
public ObservableCollection<string> TestComboItemsSource { get; private set; }
public MyConstructor()
{
TestComboItemsSource = new ObservableCollection<string>(new []{ "items", "all", "umbrella", "watch", "coat" });
}
private string _testComboItemsSourceSelected;
public string TestComboItemsSourceSelected
{
get { return _testComboItemsSourceSelected; }
set
{
if (value == "all")
{
TestComboItemsSourceSelected = "items";
return;
}
_testComboItemsSourceSelected = value;
PropertyChanged(this, new PropertyChangedEventArgs(TestComboItemsSourceSelected))
}
}
private ICommand _doStuffCommand;
public ICommand DoStuffCommand
{
get
{
return _doStuffCommand ?? (_doStuffCommand = new RelayCommand(p =>
{
TestComboItemsSourceSelected = "items";
})); }
}
好的,所以我想让 ComboBox 在用户选择项目“全部”时选择项目“项目”。使用该按钮,我可以更新组合框的 SelectedItem,我可以在 UI 中看到这一点
我有类似的逻辑来更新 TestComboItemsSourceSelected 属性的设置器中的 viewModel。如果用户选择“all”,则将 SelectedItem 设置为“items”。因此在代码方面,viewmodel 属性会发生更改,但由于某种原因,这不会反映在 UI 中。我错过了什么吗?我实现这个的方式有什么副作用吗?