Exemplo n.º 1
0
 public DialogResult DisplayQuestion(string title, string message)
 {
     return(AlertDlg.ShowQuestion(this, message, title));
 }
Exemplo n.º 2
0
 public void DisplayErrorWithException(string title, string message, Exception exception)
 {
     RunUi(() => { AlertDlg.ShowErrorWithException(this, message, title, exception); });
 }
Exemplo n.º 3
0
 public void DisplayWarning(string title, string message)
 {
     RunUi(() => { AlertDlg.ShowWarning(this, message, title); });
 }
Exemplo n.º 4
0
 public void DisplayInfo(string title, string message)
 {
     RunUi(() => { AlertDlg.ShowInfo(this, message, title); });
 }
Exemplo n.º 5
0
 public void DisplayError(string title, string message)
 {
     RunUi(() => { AlertDlg.ShowError(this, message, title); });
 }