我有一个自定义控件Class MyUserControl,
里面有一个属性MyPage,类型为UserControl。为了实现绑定,我把它定义成了依赖属性。
public class MyControl
{
public static readonly DependencyProperty MyPageProperty = DependencyProperty.Register(
"MyPage",
typeof(UserControl),
typeof(MyControl),
new PropertyMetadata(new PropertyChangedCallback(MyPageChangedCallback))
);
public UserControl MyPage
{
get
{
return GetValue(MyPageProperty) as UserControl;
}
set
{
if (MyPage!= value)
{
SetValue(MyPageProperty, value);
//
}
}
}
//省略其它代码
}
在xaml中,我想这样使用。我用的mvvm模式,View在ViewModel中定义了,为UserControl类型。
<MyControl MyPage="{Binding View}"/>
为什么不显示呢?
求高手帮忙。
至尊宝的传说