Exemplo n.º 1
0
        public static bool?Show(string title, string msg)
        {
            var msgBox = new MessageBoxX();

            msgBox.Title   = title;
            msgBox.Message = msg;
            return(msgBox.ShowDialog());
        }
        public static bool?Show(string title, string msg)
        {
            MessageBoxX msgBox = new MessageBoxX();

            msgBox.Title   = title;
            msgBox.Message = msg;
            msgBox.Topmost = true;
            return(msgBox.ShowDialog());


            return(true);
        }