每次Minutes
更改属性时,我都试图触发一个方法,但是它永远不会发生。我不是通过 设置属性XAML
,它是通过投标设置的。
public static DependencyProperty MinutesProperty =
DependencyProperty.Register("Minutes", typeof(string), typeof(TimelineControl));
public string Minutes
{
get { return (string)GetValue(MinutesProperty); }
set {
SetValue(MinutesProperty, value);
my_method();
}
}
public void my_method()
{
Console.WriteLine("foo bar");
}
我究竟做错了什么?