当前位置:  开发笔记 > 前端 > 正文

是否存在依赖属性更改时的通知机制?

如何解决《是否存在依赖属性更改时的通知机制?》经验,为你挑选了1个好方法。

在Silverlight应用程序中,我试图找出usercontrol上的属性何时发生了变化.我对一个特定的DependencyProperty很感兴趣,但不幸的是控件本身并没有实现INotifyPropertyChanged.

有没有其他方法可以确定价值是否已经改变?



1> amazedsaint..:

您可以.至少我做到了.仍然需要看到利弊.

 /// Listen for change of the dependency property
    public void RegisterForNotification(string propertyName, FrameworkElement element, PropertyChangedCallback callback)
    {

        //Bind to a depedency property
        Binding b = new Binding(propertyName) { Source = element };
        var prop = System.Windows.DependencyProperty.RegisterAttached(
            "ListenAttached"+propertyName,
            typeof(object),
            typeof(UserControl),
            new System.Windows.PropertyMetadata(callback));

        element.SetBinding(prop, b);
    }

现在,您可以调用RegisterForNotification来注册元素属性的更改通知,例如.

RegisterForNotification("Text", this.txtMain,(d,e)=>MessageBox.Show("Text changed"));
            RegisterForNotification("Value", this.sliderMain, (d, e) => MessageBox.Show("Value changed"));

在http://amazedsaint.blogspot.com/2009/12/silverlight-listening-to-dependency.html上查看我的帖子.

推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有