Example #1
0
        public static void MessageBoxMuti(string msg, System.Windows.Forms.IWin32Window window)
        {
            Form frm = (Form)window;

            frm.TopMost = true;
            MessageBoxEx.Show(frm, LanguageHelper.GetMsgText(msg), "HPMS System");
        }
Example #2
0
 public static void MessageBoxMuti(string msg)
 {
     MessageBoxEx.Show(LanguageHelper.GetMsgText(msg), "HPMS System");
 }