我有一个实现INotifyPropertyChanged接口的类顶点。所以我有两个不同的顶点类实例,我需要从实例绑定一个权重属性到实例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方法。那么这个问题是否有正确的解决方案?