C# Class Fusion8.Cropper.Extensibility.BaseConfigurationForm

Represents the base configuration form for plug-ins that implement the IConfigurablePlugin interface.
The form is presented to the user via the IConfigurablePlugin.ConfigurationForm property.
Inheritance: System.Windows.Forms.Form
ファイルを表示 Open project: enriquein/Cropper

Public Methods

Method Description
BaseConfigurationForm ( ) : System

Initializes a new instance of the BaseConfigurationForm

Save ( ) : void

Save the plug-in's settings.

Protected Methods

Method Description
OnOptionsSaved ( EventArgs e ) : void
OnPaint ( PaintEventArgs e ) : void

Method Details

BaseConfigurationForm() public method

Initializes a new instance of the BaseConfigurationForm
public BaseConfigurationForm ( ) : System
return System

OnOptionsSaved() protected method

protected OnOptionsSaved ( EventArgs e ) : void
e System.EventArgs
return void

OnPaint() protected method

protected OnPaint ( PaintEventArgs e ) : void
e System.Windows.Forms.PaintEventArgs
return void

Save() public method

Save the plug-in's settings.
public Save ( ) : void
return void