예제 #1
0
        public static DialogResult Show(IWin32Window owner, Exception ex)
        {
            ExceptionDialog dialog = new ExceptionDialog(ex);

            return(dialog.ShowDialog(owner));
        }
예제 #2
0
        public static DialogResult Show(Exception ex)
        {
            ExceptionDialog dialog = new ExceptionDialog(ex);

            return(dialog.ShowDialog());
        }