예제 #1
0
파일: FormMain.cs 프로젝트: hessonsu/bdhero
 private void ShowExceptionDetail(string title, Exception exception)
 {
     if (ExceptionDialog.IsPlatformSupported)
     {
         new ExceptionDialog(title, exception).ShowDialog(this);
     }
     else
     {
         DetailForm.ShowExceptionDetail(this, title, exception);
     }
 }
예제 #2
0
 public void ShowNonReportable(IWin32Window owner = null)
 {
     DetailForm.ShowExceptionDetail(owner, Title, _report.ExceptionMessageRaw, _report.ExceptionDetailRaw);
 }