예제 #1
0
        public static bool Show(string message)
        {
            var wnd = new ConfirmWnd(message);

            return(wnd.ShowDialog() == true);
        }
예제 #2
0
파일: Utils.cs 프로젝트: danfpop/Comenzi
 public static bool Confirm(string message)
 {
     return(ConfirmWnd.Show(message));
 }