예제 #1
0
파일: ModUi.cs 프로젝트: mskr30/IronWASP
 public void AddText(string Text)
 {
     if (this.InvokeRequired)
     {
         AddText_d ATD = new AddText_d(AddText);
         this.Invoke(ATD, new object[] { Text });
     }
     else
     {
         this.Text = this.Text + Text;
     }
 }
예제 #2
0
 public void AddText(string Text)
 {
     if (this.InvokeRequired)
     {
         AddText_d ATD = new AddText_d(AddText);
         this.Invoke(ATD, new object[] { Text });
     }
     else
     {
         this.Text = this.Text + Text;
     }
 }
예제 #3
0
 public void AddText(string Text)
 {
     if (this.InvokeRequired)
     {
         AddText_d ATD = new AddText_d(AddText);
         this.Invoke(ATD, new object[] { Text });
     }
     else
     {
         this.AppendText(Text);
         this.SelectionStart = this.Text.Length;
         this.ScrollToCaret();
     }
 }
예제 #4
0
 public void AddText(string Text)
 {
     if (this.IsDisposed) return;
     if (this.InvokeRequired)
     {
         AddText_d ATD = new AddText_d(AddText);
         this.OutputTB.Invoke(ATD, new object[] { Text });
     }
     else
     {
         this.OutputTB.Text = this.OutputTB.Text + Text;
         this.OutputTB.SelectionStart = this.OutputTB.Text.Length;
         this.OutputTB.ScrollToCaret();
     }
 }
예제 #5
0
 public void AddText(string Text)
 {
     if (this.IsDisposed)
     {
         return;
     }
     if (this.InvokeRequired)
     {
         AddText_d ATD = new AddText_d(AddText);
         this.OutputTB.Invoke(ATD, new object[] { Text });
     }
     else
     {
         this.OutputTB.Text           = this.OutputTB.Text + Text;
         this.OutputTB.SelectionStart = this.OutputTB.Text.Length;
         this.OutputTB.ScrollToCaret();
     }
 }