我有一个实现 INotifyPropertyChanged 接口的类顶点。因此,例如,我有两个不同的顶点类实例,我需要将实例 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 方法。那么这个问题有正确的解决方案吗?