standard messaging in WinForms

  • Thread starter Thread starter vadim
  • Start date Start date
V

vadim

Hi,

I am a little confused about messaging system in .Net here is my question:

Each .Net windows form still contains a main loop that contains messages
sent to the window and it dispatches them, how can I send messages to this
loop?
I am looking for something like PostMesage(window.handle, message, lparam,
wparam) that used to work in win32.

Thank you

Vadim
 
Have a look at the Message.Create() and Control.OnNotifyMessage() functions.

Chris
 
Back
Top