我有一个UserControl MyView,它有一个内部UserControl SubView。
2个UserControls的视图模型与视图具有相同的层次结构, 我,e,MyViewModel里面有SubViewModel,如下面的代码所示。
public class MyViewModel
{
private readonly SubViewModel _subViewModel = new SubViewModel();
public SubViewModel SubViewModel { get { return _subViewModel; } }
private void HandleSubViewModel()
{
// Do what is necessary to handle SubViewModel
}
}
我的问题是如何将SubViewModel绑定到SubView。
现在我在SubView的代码隐藏中定义SubViewModel并将其绑定到MyViewModel类的SubViewModel属性。
public partial class SubView : UserControl
{
public static readonly DependencyProperty SubViewModelProperty = DependencyProperty.Register(
"SubViewModel", typeof (SubViewModel), typeof (SubView), new PropertyMetadata(default(SubViewModel)));
public SubViewModel SubViewModel
{
get { return (SubViewModel) GetValue(SubViewModelProperty); }
set { SetValue(SubViewModelProperty, value); }
}
}
<UserControl x:Class="MyProject.View.MyView"
xmlns:parts="clr-namespace:MyProject.View.Parts">
<Grid DataContext="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl}, Path=MyViewModel}">
<parts:SubView SubViewModel="{Binding SubViewModel}"/>
</Grid>
</UserControl>
以这种方式绑定内部视图模型是不好的做法吗?
如果是这样,我怎样才能以更好的方式绑定它?
答案 0 :(得分:3)
可能不好的一个原因是,如果SubViewModel
内的某个属性发生变化,MyViewModel
就无法知道这一点。因此对于例如如果您需要在MyViewModel
级别执行和处理任何验证,那么您将无法做到这一点。
要解决这个问题,当房产发生变化时;你必须在SubViewModel
中提出一个事件并让MyViewModel
订阅它并在收到后做出适当的反应。
除此之外,我认为没有任何缺点。但请阅读这些链接以获取更多信息: MVVM and nested view models
答案 1 :(得分:0)
你可以这样做: 查看型号:
public class MyViewModel
{
private readonly SubViewModel _subViewModel;
public SubViewModel SubViewModel
{
get { return _subViewModel; }
}
public MyViewModel()
{
_subViewModel = new SubViewModel();
_subViewModel.Text1 = "blabla";
}
}
public class SubViewModel : DependencyObject
{
public string Text1
{
get { return (string)GetValue(Text1Property); }
set { SetValue(Text1Property, value); }
}
public static readonly DependencyProperty Text1Property =
DependencyProperty.Register("Text1", typeof(string), typeof(SubViewModel));
}
SubUserControl:
<UserControl x:Class="WpfApplication1.SubUserControl"
xmlns= ... >
<Grid Height="200" Width="300" Background="Aqua">
<TextBlock Text="{Binding SubViewModel.Text1}" />
</Grid>