コード例 #1
0
        public static ExceptionWindow CreateWindow(Exception exc)
        {
            var wnd = new ExceptionWindow();

            wnd.excText.Text = exc.ToString();
            return(wnd);
        }
コード例 #2
0
 public static ExceptionWindow CreateWindow(Exception exc)
 {
     var wnd = new ExceptionWindow();
     wnd.excText.Text = exc.ToString();
     return wnd;
 }