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