C# Class Eto.Forms.Tool

Base class for tool items on a ToolBar
Inheritance: Eto.Forms.BindableWidget
Mostrar archivo Open project: picoe/Eto

Private Properties

Property Type Description
TriggerLoad void
TriggerPreLoad void
TriggerUnLoad void

Protected Methods

Method Description
OnLoad ( EventArgs e ) : void

Called when the tool item is assigned to a control/window

OnPreLoad ( EventArgs e ) : void

Called before the tool item is assigned to a control/window

OnUnLoad ( EventArgs e ) : void

Called when the tool item is removed from a control/window

Private Methods

Method Description
TriggerLoad ( EventArgs e ) : void
TriggerPreLoad ( EventArgs e ) : void
TriggerUnLoad ( EventArgs e ) : void

Method Details

OnLoad() protected method

Called when the tool item is assigned to a control/window
protected OnLoad ( EventArgs e ) : void
e System.EventArgs Event arguments
return void

OnPreLoad() protected method

Called before the tool item is assigned to a control/window
protected OnPreLoad ( EventArgs e ) : void
e System.EventArgs Event arguments
return void

OnUnLoad() protected method

Called when the tool item is removed from a control/window
protected OnUnLoad ( EventArgs e ) : void
e System.EventArgs Event arguments
return void