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