override WndProc, Native?
IT & Infrastructure
1
Posts
1
Posters
0
Views
1
Watching
-
I was wondering if overriding the WinProc function is still considered “Native” .Net. I always avoid using it, but I have a situation where I must catch a message not supported by the .Net framework. It looks like mono is trying to support this function, but their new site is so hard to navigate, who can tell. (Or they dumped a lot of content from their site!?)
protected override void WndProc(ref Message m) { base.WndProc (ref m); ...Code Here... }
Thanks