public static DialogResult ShowDlg(Type type, string message, int time)
        {
            GUIMessageBox box = new GUIMessageBox(type, message, time);

            return(box.ShowDialog());
        }
        public static DialogResult ShowDlg(string[] message)
        {
            GUIMessageBox box = new GUIMessageBox(Type.MESSAGE, message);

            return(box.ShowDialog());
        }