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