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));
MainPage.xaml
<My:MyControl achName="{Binding Name}"/>
name には値がありますが、依存関係 (achName) プロパティに送信されないようです。どうすればこれを修正できますか?
ビューモデル
public string Name { get { return "some random test value"; } }
ビューモデルへの他のバインディングは機能するため、問題はそこにはありません。