WndProc() static public method

Internal winProc (RenderWindow's use this when creating the Win32 Window)
static public WndProc ( Axiom.Graphics.RenderWindow win, Message &m ) : bool
win Axiom.Graphics.RenderWindow
m System.Windows.Forms.Message
return bool
Esempio n. 1
0
 protected override void WndProc(ref Message m)
 {
     if (renderWindow != null)
     {
         if (!Win32MessageHandling.WndProc(renderWindow, ref m))
         {
             base.WndProc(ref m);
         }
     }
 }