我有一个问题,关于如何在WPF C#的两个ViewModel中使用公用的ObservableCollection?
我有两个视图,第一个视图包含一个可观察到的以某种形式在组合框中使用的类别的集合。第二个视图是一个窗口,可用于添加,编辑和删除类别。现在,我要分别检索两个视图的类别,但是我想合并并使用一个通用的可观察集合,以便在第二个视图中添加,更改或删除类别时获得新的更改。
视图和视图模型均由mainviewmodel控制:
public viewModel1 viewModel1 { get; set; }
public ViewModel2 ViewModel2 { get; set; }
public MainViewModel()
{
this.InitializeCommands();
this.viewModel1 = new viewModel1();
this.ViewModel2 = new ViewModel2();
this.ViewModel2.OnChangedCategory += (s, e) =>
{
this.viewModel1.Categories = GetCategories();
};
}
View1的ViewModel:
public ObservableCollection<Categories> GetCategories
{
get
{
if (this._getCategories == null)
{
this._getCategories = methods.GetCategories();
}
return this._getCategories ;
}
set
{
if (this._getCategories != value)
{
this._getCategories = value;
this.OnPropertyChanged("GetCategories");
}
}
}
View2的ViewModel:
public ObservableCollection<Categories> GetCategories
{
get
{
if (this._getCategories == null)
{
this._getCategories = methods.GetCategories();
}
return this._getCategories ;
}
set
{
if (this._getCategories != value)
{
this._getCategories = value;
this.OnPropertyChanged("GetCategories");
}
}
}
从理论上讲,它们都是相同的,只是两个视图模型中的两个不同的可观察集合,我想在两个视图中使用相同的可观察的集合,如果在第一个或第二个ViewModel中没关系。但这是否在Viewmodel 2中更有意义。假设我决定在ViewModel 2中有一个共同的类别可观察的集合,那么Viewmodel 1如何才能使用ViewModel 2中的这个可观察的集合并在更改时仍保持同步?
我该怎么做?
答案 0 :(得分:0)
您可以将其用作资源,然后任何代码都可以使用它。 与本文相关联的示例具有两对用户控件,它们共享两个这样的集合,听起来听起来与您的要求非常相似。