C# Class ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupTrackBar

Inheritance: KryptonRibbonGroupItem
ファイルを表示 Open project: Cocotteseb/Krypton Class Usage Examples

Private Properties

Property Type Description
CreateView ViewBase
MonitorControl void
OnControlEnter void
OnControlLeave void
OnDesignTimeContextMenu void
OnPaletteNeedPaint void
OnRibbonPaletteChanged void
OnTrackBarGotFocus void
OnTrackBarLostFocus void
OnTrackBarValueChanged void
ProcessCmdKey bool
UnmonitorControl void

Public Methods

Method Description
Hide ( ) : void

Make the ribbon group track bar hidden.

KryptonRibbonGroupTrackBar ( ) : System

Initialise a new instance of the KryptonRibbonGroupTrackBar class.

SetRange ( int minValue, int maxValue ) : void

Sets the minimum and maximum values for a TrackBar.

Show ( ) : void

Make the ribbon group track bar visible.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnGotFocus ( EventArgs e ) : void

Raises the GotFocus event.

OnLostFocus ( EventArgs e ) : void

Raises the LostFocus event.

OnPropertyChanged ( string propertyName ) : void

Raises the PropertyChanged event.

Private Methods

Method Description
CreateView ( KryptonRibbon ribbon, NeedPaintHandler needPaint ) : ViewBase
MonitorControl ( KryptonTrackBar c ) : void
OnControlEnter ( object sender, EventArgs e ) : void
OnControlLeave ( object sender, EventArgs e ) : void
OnDesignTimeContextMenu ( MouseEventArgs e ) : void
OnPaletteNeedPaint ( object sender, NeedLayoutEventArgs e ) : void
OnRibbonPaletteChanged ( object sender, EventArgs e ) : void
OnTrackBarGotFocus ( object sender, EventArgs e ) : void
OnTrackBarLostFocus ( object sender, EventArgs e ) : void
OnTrackBarValueChanged ( object sender, EventArgs e ) : void
ProcessCmdKey ( Message &msg, Keys keyData ) : bool
UnmonitorControl ( KryptonTrackBar c ) : void

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

Hide() public method

Make the ribbon group track bar hidden.
public Hide ( ) : void
return void

KryptonRibbonGroupTrackBar() public method

Initialise a new instance of the KryptonRibbonGroupTrackBar class.
public KryptonRibbonGroupTrackBar ( ) : System
return System

OnGotFocus() protected method

Raises the GotFocus event.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void

OnLostFocus() protected method

Raises the LostFocus event.
protected OnLostFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void

OnPropertyChanged() protected method

Raises the PropertyChanged event.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string Name of property that has changed.
return void

SetRange() public method

Sets the minimum and maximum values for a TrackBar.
public SetRange ( int minValue, int maxValue ) : void
minValue int The lower limit of the range of the track bar.
maxValue int The upper limit of the range of the track bar.
return void

Show() public method

Make the ribbon group track bar visible.
public Show ( ) : void
return void