开发者

Getting information if Topmost property is changed

开发者 https://www.devze.com 2023-04-08 11:41 出处:网络
I have a class, deriving from Window, in which I want to be notified when the Topmost property is changed.

I have a class, deriving from Window, in which I want to be notified when the Topmost property is changed.

I tried to override setter, but it's not marked as virtual. Changing metadata connected with this property made it not working (nothing happens after setting topmost true). Also WPF does not provide event connected with this property. I was th开发者_JAVA技巧inking about overriding Topmost property, but I use it to data binding, so it must stay DependencyProperty.

Is there any way to get that notification?


I try this and it seems like it work fine for me.

public partial class MainWindow : Window
{
    static MainWindow()
    {
        Window.TopmostProperty.OverrideMetadata(typeof(MainWindow),
            new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.None,
                new PropertyChangedCallback(OnTopMostChanged)));
    }
    public event EventHandler TopmostChanged;
    private static void OnTopMostChanged(DependencyObject d,
        DependencyPropertyChangedEventArgs e)
    {
        MainWindow mv = (MainWindow)d;
        if (mv.TopmostChanged != null)
            mv.TopmostChanged(mv, EventArgs.Empty);
    }

    private void ChangeTopmostBtn_Click(object sender, RoutedEventArgs e)
    {
        this.Topmost = !this.Topmost;
    }
    ...
}

When i click on my ChangeTopmost button, i get inside OnTopMostChanged method. So if you do the same and have anyone registered to TopmostChanged event, it will get the event.


You could create your own MyTopmostDependencyProperty with a PropertyChangedCallback where you can raise your notification event and bind it to the original TopmostDependencyProperty.

public static readonly DependencyProperty MyTopmostProperty =
  DependencyProperty.Register("MyTopmost",
    typeof(bool),
    typeof(MyWindow),
    new FrameworkPropertyMetadata {
      PropertyChangedCallback = new PropertyChangedCallback(OnMyTopmostChanged)
    }
);


Try to implement the NotifyPropertyChanged interface. You can read more about this interface on MSDN. (How to: Implement Property Change Notification)

0

精彩评论

暂无评论...
验证码 换一张
取 消