我有某种后台任务,该任务会定期执行或有人手动启动。
现在,我需要某种进度/结果视图,该视图显示了已处理的数据。该窗口应该一直显示。
问题在于,每次后台任务启动时,都会创建数据模型的新实例。那么,即使重新实例化了模型,如何保持模型的绑定-> ViewModel?
我已经创建了一些非常基本的示例作为展示:
查看:
<Window x:Class="View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:View"
mc:Ignorable="d"
Title="MainWindow" Height="200" Width="300" Background="Black">
<Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="0" Foreground="White" HorizontalAlignment="Center" Content="{Binding MainModelText}"/>
</Grid>
</Grid>
ViewModel:
public class ViewModel : INotifyPropertyChanged
{
MainModel _MainModel;
string _MainModelText;
public string MainModelText
{
get { return this._MainModelText; }
set
{
this._MainModelText = value;
OnNotifyPropertyChanged("MainModelText");
}
}
public ViewModel(MainModel mainModel)
{
this._MainModel = mainModel;
this._MainModel.PropertyChanged += _MainModel_PropertyChanged;
}
private void _MainModel_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
if(string.Equals(e.PropertyName, "SomeText"))
{
this.MainModelText = _MainModel.SomeText + new Random().Next(1000);
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnNotifyPropertyChanged(string propName)
{
if(this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}
}
型号:
public class MainModel : INotifyPropertyChanged
{
string _SomeText;
public string SomeText
{
get { return this._SomeText; }
set
{
this._SomeText = value;
OnNotifyPropertyChanged("SomeText");
}
}
public MainModel()
{
this.SomeText = "Its MainModel!";
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnNotifyPropertyChanged(string propName)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}
}
业务逻辑
public class Logic
{
MainModel _MainModel;
View.MainWindow _Window;
public Logic()
{
this._MainModel = new MainModel();
_Window = new View.MainWindow(new ViewModel(_MainModel));
}
public void Start()
{
_Window.ShowDialog();
}
public void NewAll()
{
this._MainModel = new MainModel();
//working...
this._MainModel.SomeText = "Finished";
}
}
显然,“完成”未显示在窗口上,因为它已设置为另一个MainModel实例。
那么如何在ViewModel中更新Modelreference? 这样的最佳实践是什么?
编辑:
public class Logic
{
MainModel _MainModel;
ViewModel _ViewModel;
View.MainWindow _Window;
public Logic()
{
this._MainModel = new MainModel();
this._ViewModel = new ViewModel(this._MainModel);
_Window = new View.MainWindow(this._ViewModel);
}
public void Start()
{
_Window.ShowDialog();
}
public void NewAll()
{
this._MainModel = new MainModel();
this._ViewModel.Reload(this._MainModel);
//working...
this._MainModel.SomeText = "Finished";
}
}
已添加到VM:
internal void Reload(MainModel mainModel)
{
this._MainModel = mainModel;
this._MainModel.PropertyChanged -= _MainModel_PropertyChanged;
this._MainModel.PropertyChanged += _MainModel_PropertyChanged;
}
答案 0 :(得分:0)
除非您有充分的理由不通过VM属性提供MainModel,否则我建议这样做。然后,您可以直接跳过SomeText属性并直接绑定到Model.SomeText,因为您的模型已经实现了INotifyPropertyChanged。
如果要加载全新的Model实例,则可以直接在VM属性上进行设置。
如果您不希望向视图提供完整的模型,则您的方法可行。但是我也会从模型构造函数中调用ReloadModel,以便将代码放在一个位置。另外,您还应该在将其更新为新模型之后,再从oldModel中注销PropertyChanged事件(首先检查_mainModel == null)。
在PropertyChanged调用中,请像现在一样使用nameof(SomeProperty)而不是固定字符串“ SomeProperty”。如果您在某个时候重命名该属性,则代码不会中断。
看看MVVM Light,该框架将使您免于一遍又一遍地编写一些样板代码,而它们提供的Messenger是从模型向VM发出信号的好方法。它将示例简化为仅几行。