C# Class CrystalMpq.Explorer.Extensibility.FileViewer

Base class for implementig a FileViewer plugin.
Inheritance: System.Windows.Forms.UserControl
Mostrar archivo Open project: sgraf812/crystalmpq Class Usage Examples

Public Methods

Method Description
ApplySettings ( ) : void

Called when the settings need to be updated.

FileViewer ( IHost host ) : System

Initializes a new instance of the FileViewer class.

Protected Methods

Method Description
CreatePluginSettings ( ) : IPluginSettings

Called when creation of the PluginSettings object is requested.

OnFileChanged ( ) : void

Called when the viewed file has changed.

Private Methods

Method Description
FileViewer ( ) : System

Initializes a new instance of the FileViewer class.

This will only be used by the Windows Forms designer.

Method Details

ApplySettings() public method

Called when the settings need to be updated.
public ApplySettings ( ) : void
return void

CreatePluginSettings() protected method

Called when creation of the PluginSettings object is requested.
protected CreatePluginSettings ( ) : IPluginSettings
return IPluginSettings

FileViewer() public method

Initializes a new instance of the FileViewer class.
public FileViewer ( IHost host ) : System
host IHost The host which will be bound to this instance.
return System

OnFileChanged() protected method

Called when the viewed file has changed.
protected OnFileChanged ( ) : void
return void