Property | Type | Description |
---|
Method | Description | |
---|---|---|
ShowError ( object owner, string message ) : void |
Shows the message as error.
|
|
ShowMessage ( object owner, string message ) : void |
Shows the message.
|
|
ShowQuestion ( object owner, string message ) : bool? |
Shows the specified question.
|
|
ShowWarning ( object owner, string message ) : void |
Shows the message as warning.
|
|
ShowYesNoQuestion ( object owner, string message ) : bool |
Shows the specified yes/no question.
|
public ShowError ( object owner, string message ) : void | ||
owner | object | The window that owns this Message Window. |
message | string | The message. |
return | void |
public ShowMessage ( object owner, string message ) : void | ||
owner | object | The window that owns this Message Window. |
message | string | The message. |
return | void |
public ShowQuestion ( object owner, string message ) : bool? | ||
owner | object | The window that owns this Message Window. |
message | string | The question. |
return | bool? |
public ShowWarning ( object owner, string message ) : void | ||
owner | object | The window that owns this Message Window. |
message | string | The message. |
return | void |
public ShowYesNoQuestion ( object owner, string message ) : bool | ||
owner | object | The window that owns this Message Window. |
message | string | The question. |
return | bool |