C# Class ComponentFactory.Krypton.Ribbon.CustomControlController

Process mouse events for a ribbon group custom control.
Inheritance: ComponentFactory.Krypton.Toolkit.GlobalId, ISourceController, IKeyController, IRibbonKeyTipTarget
Show file Open project: Cocotteseb/Krypton Class Usage Examples

Public Methods

Method Description
CustomControlController ( KryptonRibbon ribbon, KryptonRibbonGroupCustomControl customControl, ViewDrawRibbonGroupCustomControl target ) : System

Initialize a new instance of the CustomControlController class.

GotFocus ( Control c ) : void

Source control has got the focus.

KeyDown ( Control c, KeyEventArgs e ) : void

Key has been pressed down.

KeyPress ( Control c, KeyPressEventArgs e ) : void

Key has been pressed.

KeyTipSelect ( KryptonRibbon ribbon ) : void

Perform actual selection of the item.

KeyUp ( Control c, KeyEventArgs e ) : bool

Key has been released.

LostFocus ( Control c ) : void

Source control has lost the focus.

Private Methods

Method Description
KeyDownPopupGroup ( VisualPopupGroup popupGroup, KeyEventArgs e ) : void
KeyDownPopupMinimized ( VisualPopupMinimized popupMinimized, KeyEventArgs e ) : void
KeyDownRibbon ( KryptonRibbon ribbon, KeyEventArgs e ) : void

Method Details

CustomControlController() public method

Initialize a new instance of the CustomControlController class.
public CustomControlController ( KryptonRibbon ribbon, KryptonRibbonGroupCustomControl customControl, ViewDrawRibbonGroupCustomControl target ) : System
ribbon KryptonRibbon Reference to owning ribbon instance.
customControl KryptonRibbonGroupCustomControl Source definition.
target ViewDrawRibbonGroupCustomControl Target view element.
return System

GotFocus() public method

Source control has got the focus.
public GotFocus ( Control c ) : void
c System.Windows.Forms.Control Reference to the source control instance.
return void

KeyDown() public method

Key has been pressed down.
public KeyDown ( Control c, KeyEventArgs e ) : void
c System.Windows.Forms.Control Reference to the source control instance.
e System.Windows.Forms.KeyEventArgs A KeyEventArgs that contains the event data.
return void

KeyPress() public method

Key has been pressed.
public KeyPress ( Control c, KeyPressEventArgs e ) : void
c System.Windows.Forms.Control Reference to the source control instance.
e System.Windows.Forms.KeyPressEventArgs A KeyPressEventArgs that contains the event data.
return void

KeyTipSelect() public method

Perform actual selection of the item.
public KeyTipSelect ( KryptonRibbon ribbon ) : void
ribbon KryptonRibbon Reference to owning ribbon instance.
return void

KeyUp() public method

Key has been released.
public KeyUp ( Control c, KeyEventArgs e ) : bool
c System.Windows.Forms.Control Reference to the source control instance.
e System.Windows.Forms.KeyEventArgs A KeyEventArgs that contains the event data.
return bool

LostFocus() public method

Source control has lost the focus.
public LostFocus ( Control c ) : void
c System.Windows.Forms.Control Reference to the source control instance.
return void