C# Class ComponentFactory.Krypton.Ribbon.ViewRibbonMinimizedManager

Inheritance: ComponentFactory.Krypton.Toolkit.ViewManager
Afficher le fichier Open project: ComponentFactory/Krypton Class Usage Examples

Méthodes publiques

Méthode Description
Active ( ) : void

Application we are inside has become active.

Dispose ( ) : void

Clean up any resources being used.

GetPreferredSize ( IRenderer renderer, Size proposedSize ) : Size

Discover the preferred size of the view.

Inactive ( ) : void

Application we are inside has become inactive.

KeyDown ( KeyEventArgs e ) : void

Perform key down handling.

KeyPress ( KeyPressEventArgs e ) : void

Perform key press handling.

KeyUp ( KeyEventArgs e ) : void

Perform key up handling.

Layout ( ViewLayoutContext context ) : void

Perform a layout of the view.

MouseLeave ( EventArgs e ) : void

Perform mouse leave processing.

MouseMove ( MouseEventArgs e, Point rawPt ) : void

Perform mouse movement handling.

ViewRibbonMinimizedManager ( KryptonRibbon control, ViewDrawRibbonGroupsBorderSynch viewGroups, ViewBase root, bool minimizedMode, NeedPaintHandler needPaintDelegate ) : System

Initialize a new instance of the ViewRibbonManager class.

Méthodes protégées

Méthode Description
UpdateViewFromPoint ( Control control, Point pt ) : void

Update the active view based on the mouse position.

Private Methods

Méthode Description
PerformNeedPaint ( bool needLayout ) : void
PerformNeedPaint ( bool needLayout, Rectangle invalidRect ) : void

Method Details

Active() public méthode

Application we are inside has become active.
public Active ( ) : void
Résultat void

Dispose() public méthode

Clean up any resources being used.
public Dispose ( ) : void
Résultat void

GetPreferredSize() public méthode

Discover the preferred size of the view.
public GetPreferredSize ( IRenderer renderer, Size proposedSize ) : Size
renderer IRenderer Renderer provider.
proposedSize Size The custom-sized area for a control.
Résultat Size

Inactive() public méthode

Application we are inside has become inactive.
public Inactive ( ) : void
Résultat void

KeyDown() public méthode

Perform key down handling.
public KeyDown ( KeyEventArgs e ) : void
e KeyEventArgs A KeyEventArgs that contains the event data.
Résultat void

KeyPress() public méthode

Perform key press handling.
public KeyPress ( KeyPressEventArgs e ) : void
e KeyPressEventArgs A KeyPressEventArgs that contains the event data.
Résultat void

KeyUp() public méthode

Perform key up handling.
public KeyUp ( KeyEventArgs e ) : void
e KeyEventArgs A KeyEventArgs that contains the event data.
Résultat void

Layout() public méthode

Perform a layout of the view.
public Layout ( ViewLayoutContext context ) : void
context ViewLayoutContext View context for layout operation.
Résultat void

MouseLeave() public méthode

Perform mouse leave processing.
public MouseLeave ( EventArgs e ) : void
e EventArgs An EventArgs that contains the event data.
Résultat void

MouseMove() public méthode

Perform mouse movement handling.
public MouseMove ( MouseEventArgs e, Point rawPt ) : void
e MouseEventArgs A MouseEventArgs that contains the event data.
rawPt Point The actual point provided from the windows message.
Résultat void

UpdateViewFromPoint() protected méthode

Update the active view based on the mouse position.
protected UpdateViewFromPoint ( Control control, Point pt ) : void
control Control Source control.
pt Point Point within the source control.
Résultat void

ViewRibbonMinimizedManager() public méthode

Initialize a new instance of the ViewRibbonManager class.
public ViewRibbonMinimizedManager ( KryptonRibbon control, ViewDrawRibbonGroupsBorderSynch viewGroups, ViewBase root, bool minimizedMode, NeedPaintHandler needPaintDelegate ) : System
control KryptonRibbon Owning control.
viewGroups ViewDrawRibbonGroupsBorderSynch Group view elements.
root ViewBase Root of the view hierarchy.
minimizedMode bool Is this manager for handling the minimized mode popup.
needPaintDelegate NeedPaintHandler Delegate for requesting paint changes.
Résultat System