INotifyPropertyChanged インターフェイスを実装するクラス頂点を取得しました。たとえば、頂点クラスの 2 つの異なるインスタンスがあり、インスタンス a からインスタンス b への重みプロパティを重みプロパティにバインドする必要があります。
public class Vertex : INotifyPropertyChanged
{
[...]
#region Members
<summary>
/// Gets or sets the Weight of the vertex
/// </summary>
public int Weight { get { return weight; } set { weight = value; NotifyPropertyChanged("Weight"); } }
#region INotifyPropertyChanged
[...]
}
System.Windows.Data.Binding を使用してインスタンス a と b の間のバインドを作成しようとしましたが、クラスの頂点に SetBinding メソッドがないため、バインドを設定できません。では、この問題の正しい解決策はありますか?