我为我的对象(简短版本)获得了以下代码:
public class PluginClass
{
public int MyInt
{
get;
set;
}
public PluginClass()
{
Random random = new Random();
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed += (sender, e) =>
{
MyInt = random.Next(0, 100);
}
}
}
然后我用int作为DependencyProperty创建另一个类。这是代码(简化版本)
public class MyClass : FrameworkElement
{
public int Value
{
get
{
return GetValue(ValueProperty);
}
set
{
SetValue(ValueProperty, value);
}
}
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(int), typeof(MyClass ), new PropertyMetadata(0));
public MyClass(object source, string propertyName)
{
var b = new System.Windows.Data.Binding();
b.Source = source;
b.Path = new PropertyPath(propertyName);
b.Mode = System.Windows.Data.BindingMode.TwoWay;
SetBinding(ValueProperty, b);
}
}
最后我正在创建一个PluginClass实例,我想将我的“MyInt”值绑定到MyClass的int。这是我得到的(简化版本)
PluginClass pc = new PluginClass();
MyClass mc = new MyClass(pc, "MyInt");
没有编译问题,但绑定无效。 总而言之,我不知道我是否理论上必须得到:
binding.Source = PluginClass.MyInt;
binding.Path = new PropertyPath("???"); // don't know what to "ask"
或
binding.Source = PluginClass;
binding.Path = new PropertyPath("MyInt");
我认为第二种方式是好方法,但我不知道为什么它不起作用:( 任何帮助将非常感谢!
答案 0 :(得分:1)
您的PluginClass
应该实施INotifyPropertyChanged。目前,绑定不知道MyInt
的值已发生变化。
实施INPC将允许您的类在值更改时通知绑定(您必须在PropertyChanged
的设置函数中提升MyInt
。