Exemple #1
0
 private DialogResult ShowQuestionDialog(string title, string message)
 {
     return(AlertDlg.ShowQuestion(this, message, title));
 }
Exemple #2
0
 private void ShowErrorWithExceptionDialog(string title, string message, Exception exception)
 {
     AlertDlg.ShowErrorWithException(this, message, title, exception);
 }
Exemple #3
0
 private void ShowWarningDialog(string title, string message)
 {
     AlertDlg.ShowWarning(this, message, title);
 }
Exemple #4
0
 private void ShowInfoDialog(string title, string message)
 {
     AlertDlg.ShowInfo(this, message, title);
 }
Exemple #5
0
 private void ShowErrorDialog(string title, string message)
 {
     AlertDlg.ShowError(this, message, title);
 }