Intersoft ClientUI Documentation
ActiveWindowIndex Property
Example 



Gets or sets the value that indicates the active window index.
Syntax
<CategoryAttribute("Common Properties")>
Public Property ActiveWindowIndex As Integer
Dim instance As UXDesktop
Dim value As Integer
 
instance.ActiveWindowIndex = value
 
value = instance.ActiveWindowIndex
[CategoryAttribute("Common Properties")]
public int ActiveWindowIndex {get; set;}
[CategoryAttribute("Common Properties")]
public:
property int ActiveWindowIndex {
   int get();
   void set (    int value);
}
Example
The following example shows how to get the active window index in UXDesktop.
private void UXButton_Click(object sender, RoutedEventArgs e)
{
    MessageBox.Show(desktop.ActiveWindowIndex.ToString());
}
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

UXDesktop Class
UXDesktop Members
Window and Dialog Boxes Overview

Send Feedback