public static bool Show(string message) { var wnd = new ConfirmWnd(message); return(wnd.ShowDialog() == true); }
public static bool Confirm(string message) { return(ConfirmWnd.Show(message)); }