未调用依赖项属性回调

本文关键字:属性 回调 依赖 调用 | 更新日期: 2023-09-27 18:31:58

我目前正在用C#/WPF做一个用户控件,我正在使用一些DependencyProperty对象。

我想做的是当值发生变化时,我们调用一个回调方法来处理一些数据......我看到有一个用于此目的的 PropertyChangedCallback 类,但它不起作用。

这是我的代码:

用户控件:

public partial class TimeLine : UserControl
{
    public static readonly DependencyProperty FramecountProperty = DependencyProperty.Register("FrameCount", typeof(Int32), typeof(TimeLine), new FrameworkPropertyMetadata(0, new PropertyChangedCallback(FrameCountChanged)));
    public Int32 FrameCount
    {
        get { return (Int32)this.GetValue(FramecountProperty); }
        set { this.SetValue(FramecountProperty, value); }
    }
    // More code...
    public static void FrameCountChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        // Do stuff
    }
}

XAML:

<!-- Time line container -->
<controls:TimeLine Grid.Row="2" Header="Storyboard" FrameCount="{Binding FrameCount}" />

视图模型:

private Int32 frameCount;
public Int32 FrameCount
{
    get { return this.frameCount; }
    // this is from: https://github.com/ShyroFR/CSharp-Elegant-MVVM
    set { this.NotifyPropertyChanged(ref this.frameCount, value); }
}
public MainViewModel()
{
    this.FrameCount = 42;
}

我做错了吗?

感谢您的帮助。

未调用依赖项属性回调

我找到了解决方案,通过找到祖先。

<controls:TimeLine Grid.Row="2" Header="Storyboard" FrameCount="{Binding Path=DataContext.FrameCount, Mode=TwoWay, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}" />

感谢您的帮助!

Mode=TwoWay添加到绑定中。默认情况下,自定义依赖项属性的绑定为 OneWay。