Windows Forms Event Order

  • Thread starter Thread starter James Lennon
  • Start date Start date
J

James Lennon

Can someone tell me all the events that are raised when a Windows Form is
being rendered. I am also interested in the order in which these events are
raised.

Thanks,
James
 
James said:
Can someone tell me all the events that are raised when a Windows Form is
being rendered. I am also interested in the order in which these events are
raised.

Thanks,
James

If nobody is going to tell you this, how would you find out yourself? It
wouldn't be much work to actually implement this method, instead of
waiting for someone to do it for you. I'm betting that the list of
people that knows this is very short, and the list of those people
actually reading this newsgroup in time for you to get a reply sooner
than just testing it is shorter still.

The list of those who would have to try it to find the answer is very
big, but it should start with yourself.
 
Let me rephrase my question by asking where can I find documenation on the
order in which Windows Form events are raised. I have checked MSDN and
googled it but can not find documenation on this.
 
Hi,

Simply override WndProc and you will have an opportunity to get ALL the
events the form will get
 
Ignacio said:
Hi,

Simply override WndProc and you will have an opportunity to get ALL the
events the form will get

Do you know if it is possible to do that in a WPF app ?, if so could you
provide or point me in the way of an example ?
 
Back
Top