OnLostFocus() 보호된 메소드

protected OnLostFocus ( ) : void
리턴 void
예제 #1
0
 internal static void SetFocusState(GlFwForm f, bool focus)
 {
     if (focus)
     {
         f.OnFocus();
     }
     else
     {
         f.OnLostFocus();
     }
 }