Exemplo n.º 1
0
        /// <summary>
        /// Opens a modal message box with either 'OK' or 'OK and Cancel' buttons.
        /// </summary>
        /// <param name="msg"></param>
        /// <param name="type"></param>
        public static MsgBoxGump Show(string msg, MsgBoxTypes type)
        {
            MsgBoxGump gump = new MsgBoxGump(msg, type);

            return(gump);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Opens a modal message box with either 'OK' or 'OK and Cancel' buttons.
 /// </summary>
 /// <param name="msg"></param>
 /// <param name="type"></param>
 public static MsgBoxGump Show(string msg, MsgBoxTypes type)
 {
     MsgBoxGump gump = new MsgBoxGump(msg, type);
     return gump;
 }