Esempio n. 1
0
        public static DialogResult Show(IWin32Window owner, Exception ex)
        {
            ExceptionDialog dialog = new ExceptionDialog(ex);

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

            return(dialog.ShowDialog());
        }