我最近开始尝试获取MVVM,但似乎还没有工作。
我有我的模型,视图和ViewModel。我有一个使用INotifyPropertyChanged
接口的baseviewmodel。
我想制作一个ViewModels
的集合,以便我可以在我的所有观看中使用我的数据。但我似乎无法继续这样做。
无论如何,在阅读了大量不同的东西后,我甚至不确定它应该是什么。
我希望有人可以回答我的最大问题是我在哪里转储ViewModels
的收藏?我需要在ViewModel
中更改一个View
并在另一个中再次显示。
public class BaseViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public BaseViewModel()
{
}
protected virtual void RaisePropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = this.PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
}
这是一个ViewModel
,它被填入一个视图,然后需要显示在另一个视图上。但我不知道如何使用ObservableCollection<T>
类完成此操作。
public class WorkViewModel : BaseViewModel
{
private string reference;
private string address;
private string scope;
private string cost;
private double amount;
private double gst;
private double total;
public string Reference
{
get { return reference; }
set
{
if (reference != value)
{ reference = value; RaisePropertyChanged("Reference"); }
}
}
public string Address
{
get { return address; }
set
{
if (address != value)
{ address = value; RaisePropertyChanged("Address"); }
}
}
public string Scope
{
get { return scope; }
set
{
if (scope != value)
{ scope = value; RaisePropertyChanged("Scope"); }
}
}
public string Cost
{
get { return cost; }
set
{
if (cost != value)
{ cost = value; RaisePropertyChanged("Cost"); }
}
}
public double Amount
{
get { return amount; }
set
{
if (amount != value)
{
amount = value;
GST = Math.Round(amount * 0.10,2);
RaisePropertyChanged("Amount");
}
}
}
public double GST
{
get { return gst; }
set
{
if (gst != value)
{
gst = value;
Total = Math.Round(Amount + GST,2);
RaisePropertyChanged("GST");
}
}
}
public double Total
{
get { return total; }
set
{
if (total != value)
{
total = value;
RaisePropertyChanged("Total");
}
}
}
}
我试过这个:
"Create a BaseViewModel and a Collection ObservableCollection<BaseViewModel> _viewModels;
Create a Property ObservableCollection<BaseViewModel> ViewModels around _viewModels
Define your View Models like this and add to Collection
MainViewModel : BaseViewModel
Tab1ViewModel : BaseViewModel
Tab2ViewModel : BaseViewModel
现在你可以使用它:
Tab1ViewModel vm = (ViewModels.Where(vm => vm is Tab1ViewModel).Count() == 0) ? new Tab1ViewModel(): (ViewModels.Where(vm => vm is Tab1ViewModel).FirstOrDefault() as Tab1ViewModel;"
好像我需要制作一个单身人士?
答案 0 :(得分:2)
您不需要在设计中的任何位置存储视图模型的集合。在我看来,您的视图模型应该使用来自支持源(很可能是您的模型)的数据。在该设计中,您应该能够实例化相同类型的2个视图模型,并且它们都会看到相同的数据,因为它们使用相同的基础数据。我总是为每个视图设置一个视图模型实例,并且不与任何其他视图共享。