C# Class Habanero.Faces.Win.FormWin

Represents a window or dialog box that makes up an application's user interface
Inheritance: System.Windows.Forms.Form, IFormHabanero
Show file Open project: Chillisoft/habanero.faces Class Usage Examples

Private Properties

Property Type Description
BindDefaultActions void
IFormHabanero Base.DialogResult

Public Methods

Method Description
FormWin ( ) : System
SetIcon ( string resourceName ) : void
Show ( IControlHabanero owner ) : void

Shows the form with the specified owner to the user.

Protected Methods

Method Description
ProcessCmdKey ( Message &msg, Keys keyData ) : bool

Private Methods

Method Description
BindDefaultActions ( Control parent ) : void
IFormHabanero ( ) : Base.DialogResult

Shows the form as a modal dialog box with the currently active window set as its owner

Method Details

FormWin() public method

public FormWin ( ) : System
return System

ProcessCmdKey() protected method

protected ProcessCmdKey ( Message &msg, Keys keyData ) : bool
msg System.Windows.Forms.Message
keyData Keys
return bool

SetIcon() public method

public SetIcon ( string resourceName ) : void
resourceName string
return void

Show() public method

Shows the form with the specified owner to the user.
The form specified in the owner parameter is the same as the form being shown.
public Show ( IControlHabanero owner ) : void
owner IControlHabanero Any object that implements System.Windows.Forms.IWin32Window and represents the top-level window that will own this form.
return void