コード例 #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();
 }