Class MessageBox
MessageBox Provider
Inheritance
System.Object
MessageBox
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Inferno.UI
Assembly: Inferno.Desktop.dll
Syntax
public static class MessageBox
Methods
| Improve this Doc View SourceDisplay(String, String, MessageBoxType)
Declaration
public static void Display(string title, string message, MessageBoxType type)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | title | |
| System.String | message | |
| MessageBoxType | type |
Show(String, String, MessageBoxType, Boolean)
Display a native message box
Declaration
public static void Show(string title, string message, MessageBoxType type = MessageBoxType.Information, bool async = false)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | title | Title of the box |
| System.String | message | Box message |
| MessageBoxType | type | Box type |
| System.Boolean | async | Run the box in the background (Allow code to continue running) |