Interface INativeMessageBox
Native message box abstraction
Namespace: Neutronium.BuildingBlocks.ApplicationTools
Assembly: Neutronium.BuildingBlocks.ApplicationTools.dll
Syntax
public interface INativeMessageBox
Methods
| Improve this Doc View SourceShowConfirmationMessage(String, String, WindowType)
Show a message to end user and wait for an answer
Declaration
bool ShowConfirmationMessage(string message, string title, WindowType type)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Message to be displayed. |
System.String | title | The title of the window. |
WindowType | type |
Returns
Type | Description |
---|---|
System.Boolean | true if end users agrees to the question |
ShowMessage(String, String)
Show a message to end user
Declaration
void ShowMessage(string message, string title)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Message to be displayed. |
System.String | title | The title of the window. |