我遇到一个问题,我将模型更改更新回到我的viewmodel中,以便我可以显示。在这个例子中我有一个标签和一个按钮,当我按下按钮它将执行一些业务逻辑,并应更新屏幕上的标签。但是,当我的模型更改时,视图不会。关于我在这里做错了什么的想法?
查看 -
<Window.DataContext>
<vm:ViewModel>
</Window.DataContext>
<Grid>
<Label Content="{Binding Path=Name}"/>
<Button Command={Binding UpdateBtnPressed}/>
</Grid>
视图模型
public ViewModel()
{
_Model = new Model();
}
public string Name
{
get{return _Model.Name;}
set
{
_Model.Name = value;
OnPropertyChanged("Name");
}
}
public ICommand UpdateBtnPressed
{
get{
_UpdateBtn = new RelayCommand(param => UpdateLabelValue());
return _UpdateBtn;
}
private void UpdateLabelValue()
{
_Model.Name = "Value Updated";
}
模型
private string name = "unmodified string";
public string Name
{
get{return name;}
set{name = value;}
}
答案 0 :(得分:6)
试试这个:
private void UpdateLabelValue()
{
Name = "Value Updated";
}
答案 1 :(得分:1)
您似乎错过了实施INotifyPropertyChanged界面。
答案 2 :(得分:1)
您的模型必须实现INotifyPropertyChanged,例如;
public class Personel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private string _name;
public string Name
{
get { return _name; }
set { _name = value; OnChanged("Name");}
}
void OnChanged(string pn)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(pn));
}
}
}