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 (!Win32MessageHandling.WndProc(this._renderWindow, ref m))
     {
         base.WndProc(ref m);
     }
 }