我正在研究WPF项目及其MVVM。我有一个关于刷新组合框绑定值的问题。所以,在这种情况下,我的网格上有一个组合框和按钮。我需要更改数据源然后刷新以根据之前选择的一步查看新值。
请告诉我喜欢下一个按钮的最佳方法是什么?之后可能需要喜欢上一个按钮。
public MyScriptForm(IMyScriptModel viewModel) {
this.Model=viewModel;
InitializeComponent();
Height=Double.NaN;
Width=Double.NaN;
}
public IMyScriptModel Model {
get {
return this.DataContext as IMyScriptModel;
}
set {
this.DataContext=value;
}
}
private void btnNext_Click(object sender,
RoutedEventArgs e) {
/// to what ?
Model.cbxAnswer.Clear();
Model.cbxAnswer.add("Step2Data");
}
Create{//its a huge project, this working on when this form created
myScript.Model.cbxAnswer.Add("1");
myScript.Model.cbxAnswer.Add("2");
myScript.Model.cbxAnswer.Add("3");
}
destroy{}
////////////////////////
//Onmy model
public List<string> cbxAnswer {
get {
return m_cbxAnswer;
}
set {
m_cbxAnswer=value;
OnPropertyChanged("cbxAnswer");
}
}
public List<string> m_cbxAnswer=new List<string>();
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName) {
if (PropertyChanged !=null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
XAML:
<Grid>
<ComboBox Name="cbxAnswer" HorizontalAlignment="Left" Margin="10,130,0,0" VerticalAlignment="Top" Width="130" Height="25" ItemsSource="{Binding Path=cbxAnswer}" />
<Button Name="btnNext" HorizontalAlignment="Left" Margin="215,130,0,0" VerticalAlignment="Top" Width="75" Content="İlerle" Click="btnNext_Click" />
</Grid>
答案 0 :(得分:3)
您只是在集合中添加和删除(而不是创建新集合)。这意味着您需要一个实现INotifyCollectionChanged
。
一个非常方便的类已经执行了ObservableCollection<T>
,我将在此处使用List<T>
代替{{1}},以及需要将集合更改传播到UI的任何其他位置。
如果您真的正在进行完整刷新,您可以考虑重新创建集合而不是添加/删除。这可以为您带来净性能提升,因为单独执行每个操作必须由UI处理,而不是一次性处理。