Intersoft ClientUI Documentation
StaysOpen Property (UXPopup)



Gets or sets a value that determines whether the popup stays open regardless the hide command.
Syntax
<CategoryAttribute("Common Properties")>
Public Property StaysOpen As Boolean
Dim instance As UXPopup
Dim value As Boolean
 
instance.StaysOpen = value
 
value = instance.StaysOpen
[CategoryAttribute("Common Properties")]
public bool StaysOpen {get; set;}
[CategoryAttribute("Common Properties")]
public:
property bool StaysOpen {
   bool get();
   void set (    bool value);
}
Remarks

UXPopup control displays its content when the IsOpen property is set to True. By default there will be an overlay element that blocks the entire application so that if the user click at any elements outside the UXPopup contents, the UXPopup will be closed.

You can change this default behavior by setting the DisableOverlay property to True. Furthermore you can also used the StaysOpen property if you want to always display the UXPopup.

The Opened and Closed events are raised when the UXPopup is open or closed.

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

UXPopup Class
UXPopup Members

Concepts

Popup Overview

Send Feedback