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

Provides focus-management functionality for controls that can function as a container for other controls.
http://msdn.microsoft.com/en-us/library/system.windows.forms.containercontrol(v=vs.110).aspx
Inheritance: ScrollableControl, IContainerControl
Show file Open project: EBrown8534/Framework

Private Properties

Property Type Description
ProcessTabKey bool

Public Methods

Method Description
ActivateControl ( Control active ) : bool

Activates the specified control.

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

ContainerControl ( ) : System

Initializes a new instance of the ContainerControl class.

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

Protected Methods

Method Description
Select ( bool directed, bool forward ) : void

This member overrides Control.Select(Boolean, Boolean), and more complete documentation might be available in that topic. Activates a child control. Optionally specifies the direction in the tab order to select the control from.

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

Private Methods

Method Description
ProcessTabKey ( bool forward ) : bool

Method Details

ActivateControl() public method

Activates the specified control.
http://msdn.microsoft.com/en-us/library/bb339151(v=vs.110).aspx
public ActivateControl ( Control active ) : bool
active Control The to activate.
return bool

ContainerControl() public method

Initializes a new instance of the ContainerControl class.
http://msdn.microsoft.com/en-us/library/system.windows.forms.containercontrol.containercontrol(v=vs.110).aspx
public ContainerControl ( ) : System
return System

Select() protected method

This member overrides Control.Select(Boolean, Boolean), and more complete documentation might be available in that topic. Activates a child control. Optionally specifies the direction in the tab order to select the control from.
http://msdn.microsoft.com/en-us/library/z62bk4s9(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