GetControlThatHasFocus() 공개 정적인 메소드

public static GetControlThatHasFocus ( ) : Control
리턴 System.Windows.Forms.Control
예제 #1
0
        private bool DoesThisPanelHaveFocus()
        {
            Control focused = Utilities.GetControlThatHasFocus();

            return(focused == this.ActiveControl);
        }