Intersoft ClientUI Documentation
Show Method (UXWindow)
Example 



Displays the window.
Overload List
OverloadDescription
Show() Displays the window.  
Show(FrameworkElement) Displays the window and attach it to a specified owner.  
Remarks
The Show method used to display the window.
Example
The following example shows how to create a new instance of HomeWindow class and show the window using API on a button click.
private void UXButton1_Click(object sender, RoutedEventArgs e)
{
    HomeWindow window = new HomeWindow();
    window.Show();
}
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