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

            frmMsg.Show();
        }
コード例 #2
0
ファイル: MsgForm.cs プロジェクト: Egoily/CSharp-EAlbum
 public static void Show(string message, string title, MessageBoxIcon icon)
 {
     MsgForm frmMsg = new MsgForm(message, title, icon);
     frmMsg.Show();
 }
コード例 #3
0
        public static void Show(string message, string title)
        {
            MsgForm frmMsg = new MsgForm(message, title);

            frmMsg.Show();
        }
コード例 #4
0
ファイル: MsgForm.cs プロジェクト: Egoily/CSharp-EAlbum
 public static void Show(string message, string title)
 {
     MsgForm frmMsg = new MsgForm(message, title);
     frmMsg.Show();
 }