TomCaps
TomCaps

Reputation: 2527

What event will be triggered when a Window gets shown again from hidden state in WPF

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

Answers (1)

MaRuf
MaRuf

Reputation: 1894

Window.Activated event is raised after every Show method

Upvotes: 2

Related Questions