コード例 #1
0
ファイル: AppIDE.cs プロジェクト: robin5/DemiTasse
 protected void OnAppError(AppErrorEventArgs e)
 {
     if (OnAppErrorHandler != null)
         OnAppErrorHandler(this, e);
 }
コード例 #2
0
ファイル: IDEForm.cs プロジェクト: robin5/DemiTasse
 private void App_OnErrorOut(object sender, AppErrorEventArgs e)
 {
     txtConsole.Text += e.Message;
 }