Habanero.Faces.Win.FormWin.Show C# (CSharp) Method

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
        public void Show(IControlHabanero owner)
        {
            base.Show((IWin32Window)owner);
        }