tags:

views:

9

answers:

1

How to you create a method that is called with the main window come active in a WPF app?

+1  A: 

Just override Window.OnActivated in your main window (or subscribe to the main window's Activated event).

Reed Copsey