System.Windows.Forms.Control.FocusInternal C# (CSharp) 메소드

FocusInternal() 개인적인 메소드

private FocusInternal ( bool skip_check ) : bool
skip_check bool
리턴 bool
		internal virtual bool FocusInternal (bool skip_check) {
			if (skip_check || (CanFocus && IsHandleCreated && !has_focus && !is_focusing)) {
				is_focusing = true;
				Select(this);
				is_focusing = false;
			}
			return has_focus;
		}
Control