My WPF application has windows that are running on separate dispatchers. I need to be able to tell those windows to activate when the main window has focus. What event should I listen too to know when the application has focus?
My WPF application has windows that are running on separate dispatchers. I need to
Share
Application.Activatedevent is a good place. When you get this event, your application has been activated by the user (either mouse click or keyboard focus switched to it).