public static bool? Show(string msg)
 {
     ConfirmDlg dlg = new ConfirmDlg(msg);
     if (dlg.ShowDialog() == true)
         return true;
     return false;
 }
Ejemplo n.º 2
0
        public static bool?Show(string msg)
        {
            ConfirmDlg dlg = new ConfirmDlg(msg);

            if (dlg.ShowDialog() == true)
            {
                return(true);
            }
            return(false);
        }