예제 #1
0
파일: FE.cs 프로젝트: evandrojr/TreeWorks
 public static void Show(Exception ex)
 {
     FE f = new FE("Warning", ex.Message, ex.StackTrace);
     f.ShowDialog();
 }
예제 #2
0
파일: FE.cs 프로젝트: evandrojr/TreeWorks
 public static void Show(string message, string title, string details)
 {
     FE f = new FE(title, message, details);
     f.ShowDialog();
 }