コード例 #1
0
ファイル: Form1.cs プロジェクト: wilsoc5/tikzedt
 void Instance_OnTexOutput(object sender, TexCompiler.CompileEventArgs e)
 {
     //this.BeginInvoke(new InvokeDelegate(() =>
     //{
     txtTexOutput.AppendText(e.Message + Environment.NewLine);
     //}));
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: wilsoc5/tikzedt
 void Instance_OnCompileEvent(object sender, TexCompiler.CompileEventArgs e)
 {
     AddStatusLine(e.Message, e.Type == TexCompiler.CompileEventType.Error);
     if (e.Type == TexCompiler.CompileEventType.Start)
     {
         txtTexOutput.Clear();
     }
 }