Example #1
0
 public static DialogResult show(string title, string message)
 {
     alert                 = new alertWarning();
     alert.Text            = title;
     alert.txtMessage.Text = message;
     alert.Show();
     return(result);
 }