C# Class ComponentFactory.Krypton.Navigator.KryptonPage

Inheritance: ComponentFactory.Krypton.Toolkit.VisualPanel
Mostrar archivo Open project: ComponentFactory/Krypton Class Usage Examples

Private Properties

Property Type Description
OnCreateControl void
OnKryptonContextMenuDisposed void
ShouldSerializeOverrideFocus bool
ShouldSerializeStateCommon bool
ShouldSerializeStateDisabled bool
ShouldSerializeStateNormal bool
ShouldSerializeStatePressed bool
ShouldSerializeStateSelected bool
ShouldSerializeStateTracking bool
ShouldSerializeToolTipBody bool
ShouldSerializeToolTipImage bool
ShouldSerializeToolTipImageTransparentColor bool
ShouldSerializeToolTipStyle bool
ShouldSerializeToolTipTitle bool

Public Methods

Method Description
AreFlagsSet ( KryptonPageFlags flags ) : bool

Are all the provided flags set to true.

ClearFlags ( KryptonPageFlags flags ) : void

Sets all the provided flags to false.

GetImageMapping ( MapKryptonPageImage mapping ) : Image

Gets the image that matches the mapping request.

GetTextMapping ( MapKryptonPageText mapping ) : string

Gets the string that matches the mapping request.

KryptonPage ( ) : System

Initialize a new instance of the KryptonPage class.

KryptonPage ( string text ) : System

Initialize a new instance of the KryptonPage class.

KryptonPage ( string text, Image imageSmall, string uniqueName ) : System

Initialize a new instance of the KryptonPage class.

KryptonPage ( string text, string uniqueName ) : System

Initialize a new instance of the KryptonPage class.

ResetImageLarge ( ) : void

Resets the ImageLarge property to its default value.

ResetImageMedium ( ) : void

Resets the ImageMedium property to its default value.

ResetImageSmall ( ) : void

Resets the ImageSmall property to its default value.

ResetInherit ( Control alignControl ) : void

Reset the state palettes so they no longer inherit from external source.

ResetTextDescription ( ) : void

Resets the TextDescription property to its default value.

ResetTextTitle ( ) : void

Resets the TextTitle property to its default value.

ResetToolTipBody ( ) : void

Resets the ToolTipBody property to its default value.

ResetToolTipImage ( ) : void

Resets the ToolTipImage property to its default value.

ResetToolTipImageTransparentColor ( ) : void

Resets the ToolTipImageTransparentColor property to its default value.

ResetToolTipStyle ( ) : void

Resets the ToolTipStyle property to its default value.

ResetToolTipTitle ( ) : void

Resets the ToolTipTitle property to its default value.

ResetUniqueName ( ) : void

Resets the UniqueName property to its default value.

SetFixedState ( PaletteState state ) : void

Fix the control to a particular palette state.

SetFlags ( KryptonPageFlags flags ) : void

Set all the provided flags to true.

SetInherit ( Control alignControl, PaletteNavigatorRedirect common, PaletteNavigator disabled, PaletteNavigator normal, PaletteNavigatorOtherEx tracking, PaletteNavigatorOtherEx pressed, PaletteNavigatorOther selected, PaletteNavigatorOtherRedirect focus ) : void

Define the state to use when inheriting state values.

ToString ( ) : string

Obtains the String representation of this instance.

Protected Methods

Method Description
OnAppearancePropertyChanged ( string propertyName ) : void

Raises the AppearancePropertyChanged event.

OnAutoHiddenSlideSizeChanged ( EventArgs e ) : void

Raises the AutoHiddenSlideSizeChanged event.

OnDockChanged ( EventArgs e ) : void

Raises the DockChanged event.

OnEnabledChanged ( EventArgs e ) : void

Raises the EnabledChanged event.

OnFlagsChanged ( KryptonPageFlags changed ) : void

Raises the FlagsChanged event.

OnLoad ( EventArgs e ) : void

Raises the Load event.

OnLocationChanged ( EventArgs e ) : void

Raises the LocationChanged event.

OnNeedDisabledPaint ( object sender, NeedLayoutEventArgs e ) : void

Processes the need for a repaint for the disabled palette values.

OnNeedNormalPaint ( object sender, NeedLayoutEventArgs e ) : void

Processes the need for a repaint for the enabled palette values.

OnTabIndexChanged ( EventArgs e ) : void

Raises the TabIndexChanged event.

OnTabStopChanged ( EventArgs e ) : void

Raises the TabStopChanged event.

SetVisibleCore ( bool value ) : void

Sets the control to the specified visible state.

WndProc ( Message &m ) : void

Process Windows-based messages.

Private Methods

Method Description
OnCreateControl ( ) : void
OnKryptonContextMenuDisposed ( object sender, EventArgs e ) : void
ShouldSerializeOverrideFocus ( ) : bool
ShouldSerializeStateCommon ( ) : bool
ShouldSerializeStateDisabled ( ) : bool
ShouldSerializeStateNormal ( ) : bool
ShouldSerializeStatePressed ( ) : bool
ShouldSerializeStateSelected ( ) : bool
ShouldSerializeStateTracking ( ) : bool
ShouldSerializeToolTipBody ( ) : bool
ShouldSerializeToolTipImage ( ) : bool
ShouldSerializeToolTipImageTransparentColor ( ) : bool
ShouldSerializeToolTipStyle ( ) : bool
ShouldSerializeToolTipTitle ( ) : bool

Method Details

AreFlagsSet() public method

Are all the provided flags set to true.
public AreFlagsSet ( KryptonPageFlags flags ) : bool
flags KryptonPageFlags Flags to test.
return bool

ClearFlags() public method

Sets all the provided flags to false.
public ClearFlags ( KryptonPageFlags flags ) : void
flags KryptonPageFlags Flags to set.
return void

GetImageMapping() public method

Gets the image that matches the mapping request.
public GetImageMapping ( MapKryptonPageImage mapping ) : Image
mapping MapKryptonPageImage Image mapping.
return Image

GetTextMapping() public method

Gets the string that matches the mapping request.
public GetTextMapping ( MapKryptonPageText mapping ) : string
mapping MapKryptonPageText Text mapping.
return string

KryptonPage() public method

Initialize a new instance of the KryptonPage class.
public KryptonPage ( ) : System
return System

KryptonPage() public method

Initialize a new instance of the KryptonPage class.
public KryptonPage ( string text ) : System
text string Initial text.
return System

KryptonPage() public method

Initialize a new instance of the KryptonPage class.
public KryptonPage ( string text, Image imageSmall, string uniqueName ) : System
text string Initial text.
imageSmall Image Initial small image.
uniqueName string Initial unique name.
return System

KryptonPage() public method

Initialize a new instance of the KryptonPage class.
public KryptonPage ( string text, string uniqueName ) : System
text string Initial text.
uniqueName string Initial unique name.
return System

OnAppearancePropertyChanged() protected method

Raises the AppearancePropertyChanged event.
protected OnAppearancePropertyChanged ( string propertyName ) : void
propertyName string Name of the appearance property that has changed.
return void

OnAutoHiddenSlideSizeChanged() protected method

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

OnDockChanged() protected method

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

OnEnabledChanged() protected method

Raises the EnabledChanged event.
protected OnEnabledChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void

OnFlagsChanged() protected method

Raises the FlagsChanged event.
protected OnFlagsChanged ( KryptonPageFlags changed ) : void
changed KryptonPageFlags Set of flags that have changed.
return void

OnLoad() protected method

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

OnLocationChanged() protected method

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

OnNeedDisabledPaint() protected method

Processes the need for a repaint for the disabled palette values.
protected OnNeedDisabledPaint ( object sender, NeedLayoutEventArgs e ) : void
sender object Source of the event.
e ComponentFactory.Krypton.Toolkit.NeedLayoutEventArgs An NeedLayoutEventArgs containing event data.
return void

OnNeedNormalPaint() protected method

Processes the need for a repaint for the enabled palette values.
protected OnNeedNormalPaint ( object sender, NeedLayoutEventArgs e ) : void
sender object Source of the event.
e ComponentFactory.Krypton.Toolkit.NeedLayoutEventArgs An NeedLayoutEventArgs containing event data.
return void

OnTabIndexChanged() protected method

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

OnTabStopChanged() protected method

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

ResetImageLarge() public method

Resets the ImageLarge property to its default value.
public ResetImageLarge ( ) : void
return void

ResetImageMedium() public method

Resets the ImageMedium property to its default value.
public ResetImageMedium ( ) : void
return void

ResetImageSmall() public method

Resets the ImageSmall property to its default value.
public ResetImageSmall ( ) : void
return void

ResetInherit() public method

Reset the state palettes so they no longer inherit from external source.
public ResetInherit ( Control alignControl ) : void
alignControl System.Windows.Forms.Control Only if inherited values are still the same as when the aligned control was set are they reset.
return void

ResetTextDescription() public method

Resets the TextDescription property to its default value.
public ResetTextDescription ( ) : void
return void

ResetTextTitle() public method

Resets the TextTitle property to its default value.
public ResetTextTitle ( ) : void
return void

ResetToolTipBody() public method

Resets the ToolTipBody property to its default value.
public ResetToolTipBody ( ) : void
return void

ResetToolTipImage() public method

Resets the ToolTipImage property to its default value.
public ResetToolTipImage ( ) : void
return void

ResetToolTipImageTransparentColor() public method

Resets the ToolTipImageTransparentColor property to its default value.
public ResetToolTipImageTransparentColor ( ) : void
return void

ResetToolTipStyle() public method

Resets the ToolTipStyle property to its default value.
public ResetToolTipStyle ( ) : void
return void

ResetToolTipTitle() public method

Resets the ToolTipTitle property to its default value.
public ResetToolTipTitle ( ) : void
return void

ResetUniqueName() public method

Resets the UniqueName property to its default value.
public ResetUniqueName ( ) : void
return void

SetFixedState() public method

Fix the control to a particular palette state.
public SetFixedState ( PaletteState state ) : void
state PaletteState Palette state to fix.
return void

SetFlags() public method

Set all the provided flags to true.
public SetFlags ( KryptonPageFlags flags ) : void
flags KryptonPageFlags Flags to set.
return void

SetInherit() public method

Define the state to use when inheriting state values.
public SetInherit ( Control alignControl, PaletteNavigatorRedirect common, PaletteNavigator disabled, PaletteNavigator normal, PaletteNavigatorOtherEx tracking, PaletteNavigatorOtherEx pressed, PaletteNavigatorOther selected, PaletteNavigatorOtherRedirect focus ) : void
alignControl System.Windows.Forms.Control Control to use when aligning rectangles.
common PaletteNavigatorRedirect State palette for inheriting common values.
disabled PaletteNavigator State palette for inheriting disabled values.
normal PaletteNavigator State palette for inheriting normal values.
tracking PaletteNavigatorOtherEx State palette for inheriting tracking values.
pressed PaletteNavigatorOtherEx State palette for inheriting pressed values.
selected PaletteNavigatorOther State palette for inheriting selected values.
focus PaletteNavigatorOtherRedirect State palette for inheriting focus values.
return void

SetVisibleCore() protected method

Sets the control to the specified visible state.
protected SetVisibleCore ( bool value ) : void
value bool true to make the control visible; otherwise, false.
return void

ToString() public method

Obtains the String representation of this instance.
public ToString ( ) : string
return string

WndProc() protected method

Process Windows-based messages.
protected WndProc ( Message &m ) : void
m System.Windows.Forms.Message A Windows-based message.
return void