MyControl.xaml.cs
public string achName
{
get { return (string)this.GetValue(achNameProperty); }
set { this.SetValue(achNameProperty, value); }
}
public static readonly DependencyProperty achNameProperty = DependencyProperty.Register("achName", typeof(string), typeof(MyControl), new PropertyMetadata(null));
主页.xaml
<My:MyControl achName="{Binding Name}"/>
name 有一个值,但它似乎没有发送到dependendcy (achName) 属性。我怎样才能解决这个问题?
视图模型
public string Name { get { return "some random test value"; } }
viewmodel 的其他绑定确实有效,所以问题不在于那里。