C# Class ComponentFactory.Krypton.Toolkit.ScreenObscurer

Inheritance: IDisposable
Datei anzeigen Open project: ComponentFactory/Krypton Class Usage Examples

Public Methods

Method Description
Cover ( Control c ) : void

Use the obscurer to cover the provided control.

Cover ( Form f ) : void

Use the obscurer to cover the provided control.

Dispose ( ) : void

Hide the obscurer from display.

ScreenObscurer ( ) : System

Initialize a new instance of the ControlObscurer class.

ScreenObscurer ( Control c, bool designMode ) : System

Initialize a new instance of the ControlObscurer class.

ScreenObscurer ( Form f, bool designMode ) : System

Initialize a new instance of the ControlObscurer class.

Uncover ( ) : void

If covering an area then uncover it now.

Method Details

Cover() public method

Use the obscurer to cover the provided control.
public Cover ( Control c ) : void
c System.Windows.Forms.Control Control to obscure.
return void

Cover() public method

Use the obscurer to cover the provided control.
public Cover ( Form f ) : void
f System.Windows.Forms.Form Form to obscure.
return void

Dispose() public method

Hide the obscurer from display.
public Dispose ( ) : void
return void

ScreenObscurer() public method

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

ScreenObscurer() public method

Initialize a new instance of the ControlObscurer class.
public ScreenObscurer ( Control c, bool designMode ) : System
c System.Windows.Forms.Control Control to obscure.
designMode bool Is the source in design mode.
return System

ScreenObscurer() public method

Initialize a new instance of the ControlObscurer class.
public ScreenObscurer ( Form f, bool designMode ) : System
f System.Windows.Forms.Form Form to obscure.
designMode bool Is the source in design mode.
return System

Uncover() public method

If covering an area then uncover it now.
public Uncover ( ) : void
return void