C# Class Evbpc.Framework.Windows.Forms.Control

Defines the base class for controls, which are components with visual representation.
http://msdn.microsoft.com/en-us/library/System.Windows.Forms.Control(v=vs.110).aspx
Inheritance: System.ComponentModel.Component, IComponent, IDisposable
Show file Open project: EBrown8534/Framework Class Usage Examples

Private Properties

Property Type Description
FindForm Form

Public Methods

Method Description
BringToFront ( ) : void

Brings the control to the front of the z-order.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.bringtofront(v=vs.110).aspx

Control ( ) : Evbpc.Framework.Drawing

Initializes a new instance of the Control class with default settings.

http://msdn.microsoft.com/en-us/library/6b19wbt2(v=vs.110).aspx

Control ( Control parent, string text ) : Evbpc.Framework.Drawing

Initializes a new instance of the Control class as a child control, with specific text.

http://msdn.microsoft.com/en-us/library/wawy06xc(v=vs.110).aspx

Control ( Control parent, string text, int left, int top, int width, int height ) : Evbpc.Framework.Drawing

Initializes a new instance of the Control class as a child control, with specific text, size, and location.

http://msdn.microsoft.com/en-us/library/x59hwbb3(v=vs.110).aspx

Control ( string text ) : Evbpc.Framework.Drawing

Initializes a new instance of the Control class with specific text.

http://msdn.microsoft.com/en-us/library/sdxb8fy8(v=vs.110).aspx

Control ( string text, int left, int top, int width, int height ) : Evbpc.Framework.Drawing

Initializes a new instance of the Control class with specific text, size, and location.

http://msdn.microsoft.com/en-us/library/9b3we91k(v=vs.110).aspx

Focus ( ) : bool

Sets input focus to the control.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.focus(v=vs.110).aspx

GetNextControl ( Control ctl, bool forward ) : Control

Retrieves the next control forward or back in the tab order of child controls.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.getnextcontrol(v=vs.110).aspx

GetPreferredSize ( Size proposedSize ) : Size

Retrieves the size of a rectangular area into which a control can be fitted.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.getpreferredsize(v=vs.110).aspx

ResetBackColor ( ) : void

Resets the BackColor property to its default value.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resetbackcolor(v=vs.110).aspx

ResetForeColor ( ) : void

Resets the ForeColor property to its default value.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resetforecolor(v=vs.110).aspx

ResetText ( ) : void

Resets the Text property to its default value.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resettext(v=vs.110).aspx

Select ( ) : void

Activates the control.

http://msdn.microsoft.com/en-us/library/7wt11hea(v=vs.110).aspx

SelectNextControl ( Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap ) : bool

Activates the next control.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.selectnextcontrol(v=vs.110).aspx

SendToBack ( ) : void

Sends the control to the back of the z-order.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.sendtoback(v=vs.110).aspx

SetBounds ( int x, int y, int width, int height ) : void

Sets the bounds of the control to the specified location and size.

http://msdn.microsoft.com/en-us/library/z0tayb1b(v=vs.110).aspx

Show ( ) : void

Displays the control to the user.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.show(v=vs.110).aspx

Protected Methods

Method Description
GetTopLevel ( ) : bool

Determines if the control is a top-level control.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.gettoplevel(v=vs.110).aspx

OnBackColorChanged ( EventArgs e ) : void

Raises the BackColorChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onbackcolorchanged(v=vs.110).aspx

OnClick ( EventArgs e ) : void

Raises the Click event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onclick(v=vs.110).aspx

OnClientSizeChanged ( EventArgs e ) : void

Raises the ClientSizeChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onclientsizechanged(v=vs.110).aspx

OnControlAdded ( ControlEventArgs e ) : void

Raises the ControlAdded event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.oncontroladded(v=vs.110).aspx

OnControlRemoved ( ControlEventArgs e ) : void

Raises the ControlRemoved event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.oncontrolremoved(v=vs.110).aspx

OnDoubleClick ( EventArgs e ) : void

Raises the DoubleClick event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ondoubleclick(v=vs.110).aspx

OnEnabledChanged ( EventArgs e ) : void

Raises the EnabledChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onenabledchanged(v=vs.110).aspx

OnEnter ( EventArgs e ) : void

Raises the Enter event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onenter(v=vs.110).aspx

OnForeColorChanged ( EventArgs e ) : void

Raises the ForeColorChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onforecolorchanged(v=vs.110).aspx

OnGotFocus ( EventArgs e ) : void

Raises the GotFocus event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ongotfocus(v=vs.110).aspx

OnKeyDown ( KeyEventArgs e ) : void

Raises the KeyDown event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeydown(v=vs.110).aspx

OnKeyPress ( KeyPressEventArgs e ) : void

Raises the KeyPress event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeypress(v=vs.110).aspx

OnKeyUp ( KeyEventArgs e ) : void

Raises the KeyUp event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeyup(v=vs.110).aspx

OnLeave ( EventArgs e ) : void

Raises the Leave event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onleave(v=vs.110).aspx

OnLocationChanged ( EventArgs e ) : void

Raises the LocationChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onlocationchanged(v=vs.110).aspx

OnLostFocus ( EventArgs e ) : void

Raises the LostFocus event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onlostfocus(v=vs.110).aspx

OnMouseClick ( MouseEventArgs e ) : void

Raises the MouseClick event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseclick(v=vs.110).aspx

OnMouseDoubleClick ( MouseEventArgs e ) : void

Raises the MouseDoubleClick event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousedoubleclick(v=vs.110).aspx

OnMouseDown ( MouseEventArgs e ) : void

Raises the MouseDown event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousedown(v=vs.110).aspx

OnMouseEnter ( EventArgs e ) : void

Raises the MouseEnter event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseenter(v=vs.110).aspx

OnMouseHover ( EventArgs e ) : void

Raises the MouseHover event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousehover(v=vs.110).aspx

OnMouseLeave ( EventArgs e ) : void

Raises the MouseLeave event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseleave(v=vs.110).aspx

OnMouseMove ( MouseEventArgs e ) : void

Raises the MouseMove event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousemove(v=vs.110).aspx

OnMouseUp ( MouseEventArgs e ) : void

Raises the MouseUp event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseup(v=vs.110).aspx

OnMouseWheel ( MouseEventArgs e ) : void

Raises the MouseWheel event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousewheel(v=vs.110).aspx

OnMove ( EventArgs e ) : void

Raises the Move event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmove(v=vs.110).aspx

OnResize ( EventArgs e ) : void

Raises the Resize event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onresize(v=vs.110).aspx

OnSizeChanged ( EventArgs e ) : void

Raises the SizeChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onsizechanged(v=vs.110).aspx

OnTabIndexChanged ( EventArgs e ) : void

Raises the TabIndexChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontabindexchanged(v=vs.110).aspx

OnTabStopChanged ( EventArgs e ) : void

Raises the TabStopChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontabstopchanged(v=vs.110).aspx

OnTextChanged ( EventArgs e ) : void

Raises the TextChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontextchanged(v=vs.110).aspx

OnVisibleChanged ( EventArgs e ) : void

Raises the VisibleChanged event.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onvisiblechanged(v=vs.110).aspx

Select ( bool directed, bool forward ) : void

Activates a child control. Optionally specifies the direction in the tab order to select the control from.

http://msdn.microsoft.com/en-us/library/hb97bya5(v=vs.110).aspx

SetTopLevel ( bool value ) : void

Sets the control as the top-level control.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.settoplevel(v=vs.110).aspx

Private Methods

Method Description
FindForm ( ) : Form

Method Details

BringToFront() public method

Brings the control to the front of the z-order.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.bringtofront(v=vs.110).aspx
public BringToFront ( ) : void
return void

Control() public method

Initializes a new instance of the Control class with default settings.
http://msdn.microsoft.com/en-us/library/6b19wbt2(v=vs.110).aspx
public Control ( ) : Evbpc.Framework.Drawing
return Evbpc.Framework.Drawing

Control() public method

Initializes a new instance of the Control class as a child control, with specific text.
http://msdn.microsoft.com/en-us/library/wawy06xc(v=vs.110).aspx
public Control ( Control parent, string text ) : Evbpc.Framework.Drawing
parent Control The to be the parent of the control.
text string The text displayed by the control.
return Evbpc.Framework.Drawing

Control() public method

Initializes a new instance of the Control class as a child control, with specific text, size, and location.
http://msdn.microsoft.com/en-us/library/x59hwbb3(v=vs.110).aspx
public Control ( Control parent, string text, int left, int top, int width, int height ) : Evbpc.Framework.Drawing
parent Control The to be the parent of the control.
text string The text displayed by the control.
left int The X position of the control, in pixels, from the left edge of the control's container. The value is assigned to the property.
top int The Y position of the control, in pixels, from the top edge of the control's container. The value is assigned to the property.
width int The width of the control, in pixels. The value is assigned to the property.
height int The height of the control, in pixels. The value is assigned to the property.
return Evbpc.Framework.Drawing

Control() public method

Initializes a new instance of the Control class with specific text.
http://msdn.microsoft.com/en-us/library/sdxb8fy8(v=vs.110).aspx
public Control ( string text ) : Evbpc.Framework.Drawing
text string The text displayed by the control.
return Evbpc.Framework.Drawing

Control() public method

Initializes a new instance of the Control class with specific text, size, and location.
http://msdn.microsoft.com/en-us/library/9b3we91k(v=vs.110).aspx
public Control ( string text, int left, int top, int width, int height ) : Evbpc.Framework.Drawing
text string The text displayed by the control.
left int The X position of the control, in pixels, from the left edge of the control's container. The value is assigned to the property.
top int The Y position of the control, in pixels, from the top edge of the control's container. The value is assigned to the property.
width int The width of the control, in pixels. The value is assigned to the property.
height int The height of the control, in pixels. The value is assigned to the property.
return Evbpc.Framework.Drawing

Focus() public method

Sets input focus to the control.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.focus(v=vs.110).aspx
public Focus ( ) : bool
return bool

GetNextControl() public method

Retrieves the next control forward or back in the tab order of child controls.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.getnextcontrol(v=vs.110).aspx
public GetNextControl ( Control ctl, bool forward ) : Control
ctl Control The to start the search with.
forward bool true to search forward in the tab order; true to search backward.
return Control

GetPreferredSize() public method

Retrieves the size of a rectangular area into which a control can be fitted.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.getpreferredsize(v=vs.110).aspx
public GetPreferredSize ( Size proposedSize ) : Size
proposedSize Evbpc.Framework.Drawing.Size The custom-sized area for a control.
return Evbpc.Framework.Drawing.Size

GetTopLevel() protected method

Determines if the control is a top-level control.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.gettoplevel(v=vs.110).aspx
protected GetTopLevel ( ) : bool
return bool

OnBackColorChanged() protected method

Raises the BackColorChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onbackcolorchanged(v=vs.110).aspx
protected OnBackColorChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnClick() protected method

Raises the Click event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onclick(v=vs.110).aspx
protected OnClick ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnClientSizeChanged() protected method

Raises the ClientSizeChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onclientsizechanged(v=vs.110).aspx
protected OnClientSizeChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnControlAdded() protected method

Raises the ControlAdded event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.oncontroladded(v=vs.110).aspx
protected OnControlAdded ( ControlEventArgs e ) : void
e ControlEventArgs A that contains the event data.
return void

OnControlRemoved() protected method

Raises the ControlRemoved event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.oncontrolremoved(v=vs.110).aspx
protected OnControlRemoved ( ControlEventArgs e ) : void
e ControlEventArgs A that contains the event data.
return void

OnDoubleClick() protected method

Raises the DoubleClick event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ondoubleclick(v=vs.110).aspx
protected OnDoubleClick ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnEnabledChanged() protected method

Raises the EnabledChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onenabledchanged(v=vs.110).aspx
protected OnEnabledChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnEnter() protected method

Raises the Enter event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onenter(v=vs.110).aspx
protected OnEnter ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnForeColorChanged() protected method

Raises the ForeColorChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onforecolorchanged(v=vs.110).aspx
protected OnForeColorChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnGotFocus() protected method

Raises the GotFocus event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ongotfocus(v=vs.110).aspx
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnKeyDown() protected method

Raises the KeyDown event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeydown(v=vs.110).aspx
protected OnKeyDown ( KeyEventArgs e ) : void
e KeyEventArgs A that contains the event data.
return void

OnKeyPress() protected method

Raises the KeyPress event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeypress(v=vs.110).aspx
protected OnKeyPress ( KeyPressEventArgs e ) : void
e KeyPressEventArgs A that contains the event data.
return void

OnKeyUp() protected method

Raises the KeyUp event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onkeyup(v=vs.110).aspx
protected OnKeyUp ( KeyEventArgs e ) : void
e KeyEventArgs A that contains the event data.
return void

OnLeave() protected method

Raises the Leave event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onleave(v=vs.110).aspx
protected OnLeave ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnLocationChanged() protected method

Raises the LocationChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onlocationchanged(v=vs.110).aspx
protected OnLocationChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnLostFocus() protected method

Raises the LostFocus event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onlostfocus(v=vs.110).aspx
protected OnLostFocus ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnMouseClick() protected method

Raises the MouseClick event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseclick(v=vs.110).aspx
protected OnMouseClick ( MouseEventArgs e ) : void
e MouseEventArgs A that contains the event data.
return void

OnMouseDoubleClick() protected method

Raises the MouseDoubleClick event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousedoubleclick(v=vs.110).aspx
protected OnMouseDoubleClick ( MouseEventArgs e ) : void
e MouseEventArgs A that contains the event data.
return void

OnMouseDown() protected method

Raises the MouseDown event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousedown(v=vs.110).aspx
protected OnMouseDown ( MouseEventArgs e ) : void
e MouseEventArgs A that contains the event data.
return void

OnMouseEnter() protected method

Raises the MouseEnter event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseenter(v=vs.110).aspx
protected OnMouseEnter ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnMouseHover() protected method

Raises the MouseHover event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousehover(v=vs.110).aspx
protected OnMouseHover ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnMouseLeave() protected method

Raises the MouseLeave event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseleave(v=vs.110).aspx
protected OnMouseLeave ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnMouseMove() protected method

Raises the MouseMove event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousemove(v=vs.110).aspx
protected OnMouseMove ( MouseEventArgs e ) : void
e MouseEventArgs An that contains the event data.
return void

OnMouseUp() protected method

Raises the MouseUp event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmouseup(v=vs.110).aspx
protected OnMouseUp ( MouseEventArgs e ) : void
e MouseEventArgs A that contains the event data.
return void

OnMouseWheel() protected method

Raises the MouseWheel event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmousewheel(v=vs.110).aspx
protected OnMouseWheel ( MouseEventArgs e ) : void
e MouseEventArgs A that contains the event data.
return void

OnMove() protected method

Raises the Move event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onmove(v=vs.110).aspx
protected OnMove ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnResize() protected method

Raises the Resize event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onresize(v=vs.110).aspx
protected OnResize ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnSizeChanged() protected method

Raises the SizeChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onsizechanged(v=vs.110).aspx
protected OnSizeChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnTabIndexChanged() protected method

Raises the TabIndexChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontabindexchanged(v=vs.110).aspx
protected OnTabIndexChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnTabStopChanged() protected method

Raises the TabStopChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontabstopchanged(v=vs.110).aspx
protected OnTabStopChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnTextChanged() protected method

Raises the TextChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.ontextchanged(v=vs.110).aspx
protected OnTextChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

OnVisibleChanged() protected method

Raises the VisibleChanged event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.onvisiblechanged(v=vs.110).aspx
protected OnVisibleChanged ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
return void

ResetBackColor() public method

Resets the BackColor property to its default value.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resetbackcolor(v=vs.110).aspx
public ResetBackColor ( ) : void
return void

ResetForeColor() public method

Resets the ForeColor property to its default value.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resetforecolor(v=vs.110).aspx
public ResetForeColor ( ) : void
return void

ResetText() public method

Resets the Text property to its default value.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.resettext(v=vs.110).aspx
public ResetText ( ) : void
return void

Select() public method

Activates the control.
http://msdn.microsoft.com/en-us/library/7wt11hea(v=vs.110).aspx
public Select ( ) : void
return void

Select() protected method

Activates a child control. Optionally specifies the direction in the tab order to select the control from.
http://msdn.microsoft.com/en-us/library/hb97bya5(v=vs.110).aspx
protected Select ( bool directed, bool forward ) : void
directed bool true to specify the direction of the control to select; otherwise, false.
forward bool true to move forward in the tab order; false to move backward in the tab order.
return void

SelectNextControl() public method

Activates the next control.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.selectnextcontrol(v=vs.110).aspx
public SelectNextControl ( Control ctl, bool forward, bool tabStopOnly, bool nested, bool wrap ) : bool
ctl Control The at which to start the search.
forward bool true to move forward in the tab order; false to move backward in the tab order.
tabStopOnly bool true to ignore the controls with the TabStop property set to false; otherwise, false.
nested bool true to include nested (children of child controls) child controls; otherwise, false.
wrap bool true to continue searching from the first control in the tab order after the last control has been reached; otherwise, false.
return bool

SendToBack() public method

Sends the control to the back of the z-order.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.sendtoback(v=vs.110).aspx
public SendToBack ( ) : void
return void

SetBounds() public method

Sets the bounds of the control to the specified location and size.
http://msdn.microsoft.com/en-us/library/z0tayb1b(v=vs.110).aspx
public SetBounds ( int x, int y, int width, int height ) : void
x int The new property value of the control.
y int The new property value of the control.
width int The new property value of the control.
height int The new property value of the control.
return void

SetTopLevel() protected method

Sets the control as the top-level control.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.settoplevel(v=vs.110).aspx
protected SetTopLevel ( bool value ) : void
value bool true to set the control as the top-level control; otherwise, false.
return void

Show() public method

Displays the control to the user.
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.show(v=vs.110).aspx
public Show ( ) : void
return void