Class Popup
A Popup provides a class which can be display topmost area
Namespace: Tizen.UIExtensions.NUI
Assembly: Tizen.UIExtensions.NUI.dll
Syntax
public class Popup : View
Constructors
Popup()
Initializes a new instance of the Popup class.
Declaration
public Popup()
Properties
Content
Content of popup
Declaration
public View? Content { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<View> |
HasOpenedPopup
Declaration
public static bool HasOpenedPopup { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsOpen
Gets a value that indicates open state
Declaration
public bool IsOpen { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Close()
Close popup
Declaration
public void Close()
CloseAll()
Declaration
public static void CloseAll()
CloseLast()
Declaration
public static void CloseLast()
Open()
Open popup
Declaration
public void Open()
Events
Closed
Closed will be triggered when the popup has been closed.
Declaration
public event EventHandler Closed
Event Type
Type | Description |
---|---|
System.EventHandler |
OutsideClicked
OutsideClicked will be triggered when users taps on the outside of Popup.
Declaration
public event EventHandler OutsideClicked
Event Type
Type | Description |
---|---|
System.EventHandler |