我有一个视图模型ProductionViewModel
,它扩展了更通用的EntityViewModelBase<T>
,后者又扩展了mmvm-light的ViewModelBase
(派生自ObservableObject)。
调用此视图模型时,我通过其方法SetItem(production)
ProductionViewModel pview = ServiceLocator.Current.GetInstance<ProductionViewModel>();
pview.SetItem((Models.Production) msg.Model);
ViewContent = pview;
相关的XAML:
<DataTemplate x:Name="ProductionViewTemplate" DataType="{x:Type viewmodels:ProductionViewModel}">
<views:ProductionView DataContext="{Binding}"/>
</DataTemplate>
<!-- then later -->
<ContentControl Content="{Binding ViewContent}"/>
这是(简化的)ViewModel:
public class ProductionViewModel : EntityViewModelBase<Production>
{
public T Item { get; set; } // shall be in BaseClass
public ProductionViewModel() {}
public void SetItem(Production model) // shall be in BaseClass
{
Item = model;
}
// a subViewModel
public ArtistgroupListViewModel ArtistgroupListViewModel
{
get
{ // BREAKPOINT 1
ArtistgroupListViewModel vm = new ArtistgroupListViewModel();
//vm.SetArtistgroups(Artistgroups); // that's the goal
vm.SetTestText(Item.Label); // that's for debugging only
return vm;
}
}
//EDIT: added all Properties that live here, but should not be related:
public string LastModified => Item.LastModified.ToShortDateString() + " " + Item.LastModified.ToShortTimeString();
public Workgroup Workgroup => (Workgroup) Task.Run(() => Store.FindItemByIdAsync(typeof(Workgroup), Item.Workgroup.Id)).Result;
public List<BaseModel> Artistgroups => Task.Run(() => Store.QueryAsync(typeof(Artistgroup), new Filter(Item.Artistgroups.Ids))).Result;
}
EntityViewModelBase
的相关部分:
public abstract class EntityViewModelBase<T> : ViewModelBase
where T : BaseModel
{
//public T Item { get; set; }
public EntityViewModelBase()
{
// this gets called
}
//public void SetItem(T currentItem)
//{ // BREAKPOINT 2
// Item = currentItem;
//}
}
然后在SubViewModel ArtistgroupListViewModel
中,我只设置了TestText
public string Test { get; set; } = "Test";
public void SetTestText(string txt)
{
Test = txt;
}
并在合适的View.xaml中显示
在这种配置下,一切都很好,并且在视图中更新了TestText。
但是我实际上想移动
public T Item { get; set; }
public void SetItem(Production model)
{ // BREAKPOINT 2
Item = model;
}
从ProductionViewModel到EntityViewModelBase(如您所见,注释的版本已经存在于其中)。
但是,当我执行此操作时,并在生产之间切换-在ProductionViewModel上调用SetItem()
-文本不再更新。
症状:
Item
或方法SetItem()
移动到EntityViewModelBase,则行为相同 所以问题是:
有什么办法可以移动这两个吗?如果不是,为什么我必须将它们保留在扩展类中?这将与我对扩展类的理解相矛盾。是实现INotifyPropertyChanged的问题吗? (尽管我也通过Fody尝试过)
所有软件包都具有最新版本的.Net 4.6。
编辑:
ArtistgroupListViewModel的吸气剂通过xaml中的绑定调用,如下所示:
<local:ArtistgroupListView DataContext="{Binding Path=ArtistgroupListViewModel, NotifyOnSourceUpdated=True}"/>
答案 0 :(得分:0)
我找到了解决方案/问题的原因:
确实是mvvm-light ViewModelLocator或使用ViewModel的一个实例的事实。
所以我只在主父VieModel中进行了更改:
ProductionViewModel pview = new ProductionViewModel(); // no more ServiceLocator...
pview.SetItem((Models.Production) msg.Model);
ViewContent = pview;