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