OnLostFocus() protected method

protected OnLostFocus ( ) : void
return void
Esempio n. 1
0
 internal static void SetFocusState(GlFwForm f, bool focus)
 {
     if (focus)
     {
         f.OnFocus();
     }
     else
     {
         f.OnLostFocus();
     }
 }