我最近开始尝试掌握似乎还没有工作的 MVVM。
我有我的模型、视图和视图模型。我有一个使用该INotifyPropertyChanged
界面的基本视图模型。
我想收集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;"
好像我需要做一个单身人士?