예제 #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;
 }