示例#1
0
文件: Program.cs 项目: bamx23/ZInc
 private void AddOut(string s)
 {
     if (Output.InvokeRequired)
     {
         AddOutputTextDelegate GTD = new AddOutputTextDelegate(AddOutText);
         Output.Invoke(GTD, (object)s);
     }
     else
     {
         AddOutText(s);
     }
 }
示例#2
0
文件: Program.cs 项目: semens/ZInc
 private void AddOut(string s)
 {
     if (Output.InvokeRequired)
     {
         AddOutputTextDelegate GTD = new AddOutputTextDelegate(AddOutText);
         Output.Invoke(GTD, (object)s);
     }
     else
     {
         Output.Text += "<<" + s + "\n";
         Output.Refresh();
     }
 }