Class NativeUI
Inheritance
System.Object
NativeUI
Namespace: EasyMobile
Assembly: cs.temp.dll.dll
Syntax
public static class NativeUI
Methods
Alert(String, String)
Shows a one-button alert with the default "OK" button.
Declaration
public static NativeUI.AlertPopup Alert(string title, string message)
Parameters
Type | Name | Description |
---|---|---|
System. |
title | Title. |
System. |
message | Message. |
Returns
Type | Description |
---|---|
Native |
The alert. |
Alert(String, String, String)
Shows a one-button alert with a custom button label.
Declaration
public static NativeUI.AlertPopup Alert(string title, string message, string button)
Parameters
Type | Name | Description |
---|---|---|
System. |
title | Title. |
System. |
message | Message. |
System. |
button | Button. |
Returns
Type | Description |
---|---|
Native |
The one button alert. |
IsShowingAlert()
Determines if an alert popup is being shown.
Declaration
public static bool IsShowingAlert()
Returns
Type | Description |
---|---|
System. |
|
ShowThreeButtonAlert(String, String, String, String, String)
Shows an alert with 3 buttons.
Declaration
public static NativeUI.AlertPopup ShowThreeButtonAlert(string title, string message, string button1, string button2, string button3)
Parameters
Type | Name | Description |
---|---|---|
System. |
title | Title. |
System. |
message | Message. |
System. |
button1 | Button1. |
System. |
button2 | Button2. |
System. |
button3 | Button3. |
Returns
Type | Description |
---|---|
Native |
The three buttons alert. |
ShowTwoButtonAlert(String, String, String, String)
Shows an alert with 2 buttons.
Declaration
public static NativeUI.AlertPopup ShowTwoButtonAlert(string title, string message, string button1, string button2)
Parameters
Type | Name | Description |
---|---|---|
System. |
title | Title. |
System. |
message | Message. |
System. |
button1 | Button1. |
System. |
button2 | Button2. |
Returns
Type | Description |
---|---|
Native |
The two buttons alert. |