public void AddText(String Text)
 {
     PSTextBox txt = new PSTextBox();
     txt.Text = Text;
     txt.ParentStrip = tbTools;
     this.Controls.Add(txt);
     this.Controls.SetChildIndex(txt, 0);
 }
        public void AddText(String Text)
        {
            PSTextBox txt = new PSTextBox();

            txt.Text        = Text;
            txt.ParentStrip = tbTools;
            this.Controls.Add(txt);
            this.Controls.SetChildIndex(txt, 0);
        }