Ejemplo n.º 1
0
        public static void Show(string message, string title, MessageBoxIcon icon)
        {
            MsgForm frmMsg = new MsgForm(message, title, icon);

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

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