Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the last possible event I can catch after a user control has been shown in .net, winforms?

as the title says, I'm looking for an event to catch after a user control has been shown.

At the moment, I have to set a do-once variable and catch the Invalidated event.

like image 645
Jules Avatar asked Nov 23 '09 11:11

Jules


1 Answers

What about VisibleChanged?

like image 133
thecoop Avatar answered Oct 04 '22 12:10

thecoop