wpf – 如何提高属性更改事件的依赖属性?

前端之家收集整理的这篇文章主要介绍了wpf – 如何提高属性更改事件的依赖属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
OK,所以我有这个控件有两个属性。其中一个是DependencyProperty,另一个是第一个的“别名”。我需要做的是在第一个更改时为第二个(别名)提高PropertyChanged事件。

注意:我使用DependencyObjects,而不是INotifyPropertyChanged(试过,没有工作,因为我的控制是一个子类ListView)

这样的东西…..

  1. protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
  2. {
  3. base.OnPropertyChanged(e);
  4. if (e.Property == MyFirstProperty)
  5. {
  6. RaiseAnEvent( MySecondProperty ); /// what is the code that would go here?
  7. }
  8. }

如果我使用INotify我可以这样做…

  1. public string SecondProperty
  2. {
  3. get
  4. {
  5. return this.m_IconPath;
  6. }
  7. }
  8.  
  9. public string IconPath
  10. {
  11. get
  12. {
  13. return this.m_IconPath;
  14. }
  15. set
  16. {
  17. if (this.m_IconPath != value)
  18. {
  19. this.m_IconPath = value;
  20. this.SendPropertyChanged("IconPath");
  21. this.SendPropertyChanged("SecondProperty");
  22. }
  23. }
  24. }

其中我可以从一个setter对多个属性引发PropertyChanged事件。我需要能够做同样的事情,只使用DependencyProperties。

>在你的类中实现INotifyPropertyChanged。
>在注册依赖属性时,在属性元数据中指定回调。
>在回调中,提高PropertyChanged事件。

添加回调:

  1. public static DependencyProperty FirstProperty = DependencyProperty.Register(
  2. "First",typeof(string),typeof(MyType),new FrameworkPropertyMetadata(
  3. false,new PropertyChangedCallback(OnFirstPropertyChanged)));

在回调中升级PropertyChanged:

  1. private static void OnFirstPropertyChanged(
  2. DependencyObject sender,DependencyPropertyChangedEventArgs e)
  3. {
  4. PropertyChangedEventHandler h = PropertyChanged;
  5. if (h != null)
  6. {
  7. h(sender,new PropertyChangedEventArgs("Second"));
  8. }
  9. }

猜你在找的设计模式相关文章