我有一个具有依赖属性的自定义控件
public static readonly DependencyProperty SelectedUserCodeProperty = DependencyProperty.Register(
"SelectedUserCode",
typeof(decimal),
typeof(SystemUsersControl),
new PropertyMetadata(SelectedUserCodeChanged));
public decimal SelectedUserCode
{
get
{
return (decimal)this.GetValue(SelectedUserCodeProperty);
}
set
{
this.SetValue(SelectedUserCodeProperty, value);
RaisePropertyChanged("SelectedUserCode");
}
}
此控件位于另一个用户控件中,我试图在其视图模型中获取上面的依赖项属性此 xaml 位于父控件中
<SystemUsers:SystemUsersControl Name="ctrlSystemUsersControl" SelectedUserCode="{Binding SelectedSystemUserCode, Mode=TwoWay}" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,2,0,0"/>
但没有任何东西绑定到父控件视图模型
我不知道是什么问题,这是我第一次处理依赖属性,我正在考虑将两个控件合二为一:(除非我得到任何帮助:)