System.Windows.Forms.Form.FocusInternal C# (CSharp) Method

FocusInternal() private method

private FocusInternal ( bool skip_check ) : bool
skip_check bool
return bool
		internal override bool FocusInternal (bool skip_check)
		{
			if (IsMdiChild) {
				// MS always creates handles when Focus () is called for mdi clients.
				if (!IsHandleCreated)
					CreateHandle ();
			} 
			return base.FocusInternal (skip_check);
		}
		#endregion	// Private & Internal Methods
Form