Property | Type | Description | |
---|---|---|---|
Close | void | ||
ClosePopup | void | ||
CreateNotificationBox | |||
HandleBackKeyAndAppBar | void | ||
OpenPopup | void | ||
SafeShow | void | ||
TryFindTemplate | DataTemplate | ||
parentPage_BackKeyPress | void |
Method | Description | |
---|---|---|
Show ( string title, string message ) : void |
Displays a notification box with title, message and custom actions.
|
|
ShowAgain ( string title, string message, bool forceShowAgain, Action |
Displays a notification box with title, message and custom actions. In addition a message asking if this message should be shown again next time.
|
|
ShowAgain ( string title, string message, string showAgainText, bool forceShowAgain, Action |
Displays a notification box with title, message and custom actions. In addition a message asking if this message should be shown again next time.
|
Method | Description | |
---|---|---|
Close ( ) : void | ||
ClosePopup ( ) : void | ||
CreateNotificationBox ( string title, string message, |
||
HandleBackKeyAndAppBar ( ) : void | ||
OpenPopup ( ) : void | ||
SafeShow ( Dispatcher dispatcher, Action showAction ) : void | ||
TryFindTemplate ( object templateKey ) : DataTemplate | ||
parentPage_BackKeyPress ( object sender, CancelEventArgs e ) : void |
public static Show ( string title, string message ) : void | ||
title | string | The title of this message. |
message | string | The message body text. |
return | void |
public static ShowAgain ( string title, string message, bool forceShowAgain, Action |
||
title | string | The title of this message. |
message | string | The message body text. |
forceShowAgain | bool | Value indicating whether to force message display in case that the user suppressed this message, |
suppression | Action |
Callback for indicating whether message suppressed or not.. |
uniqueKey | string | Unique key representing a specific message identity. |
return | void |
public static ShowAgain ( string title, string message, string showAgainText, bool forceShowAgain, Action |
||
title | string | The title of this message. |
message | string | The message body text. |
showAgainText | string | The text asking if this message should be shown again. |
forceShowAgain | bool | Value indicating whether to force message display in case that the user suppressed this message, |
suppression | Action |
Callback for indicating whether message suppressed or not.. |
uniqueKey | string | Unique key representing a specific message identity. |
return | void |