Beispiel #1
0
        public static void Show(string message, string title, MessageBoxIcon icon)
        {
            MsgForm frmMsg = new MsgForm(message, title, icon);

            frmMsg.Show();
        }
Beispiel #2
0
 public static void Show(string message, string title, MessageBoxIcon icon)
 {
     MsgForm frmMsg = new MsgForm(message, title, icon);
     frmMsg.Show();
 }
Beispiel #3
0
        public static void Show(string message, string title)
        {
            MsgForm frmMsg = new MsgForm(message, title);

            frmMsg.Show();
        }
Beispiel #4
0
 public static void Show(string message, string title)
 {
     MsgForm frmMsg = new MsgForm(message, title);
     frmMsg.Show();
 }