예제 #1
0
파일: Form1.cs 프로젝트: DrZeil/nbn-csharp
 /// <summary>
 /// Show history of learning window
 /// </summary>
 private void showHistory()
 {
     try
     {
         HistoryWindow hw = new HistoryWindow();
         hw.FormClosing += (s, a) =>
         {
             this.BringToFront();
         };
         hw.ShowDialog();
     }
     catch (Exception ex)
     {
         info = ex.ToLog().GetError();
     }
 }
예제 #2
0
파일: Form1.cs 프로젝트: DrZeil/nbn-csharp
 /// <summary>
 /// Show history of learning window
 /// </summary>
 private void showHistory()
 {
     try
     {
         HistoryWindow hw = new HistoryWindow();
         hw.FormClosing += (s, a) =>
         {
             this.BringToFront();
         };
         hw.ShowDialog();
     }
     catch (Exception ex)
     {
         info = ex.ToLog().GetError();
     }
 }