Reputation: 2527
var window = new Window(); window.Show(); //the Loaded Event will be triggered after this statement. window.Hide(); window.Show();
Which Event will be triggered after the last statement?
Upvotes: 1
Views: 112
Reputation: 1894
Window.Activated event is raised after every Show method
Upvotes: 2