Intersoft ClientUI Documentation
Hide Method (UXWindow)
Example 



Hides the window.
Syntax
Public Sub Hide() 
Dim instance As UXWindow
 
instance.Hide()
public void Hide()
public:
void Hide(); 
Remarks
The Hide method used to display the window.
Example
The following example shows how to create a new instance of HomeWindow class and hide the window using API on a button click.
private void UXButton1_Click(object sender, RoutedEventArgs e)
{
    HomeWindow window = new HomeWindow();
    window.Hide();
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXWindow Class
UXWindow Members
Window and Dialog Boxes Overview

Send Feedback