W
William Stacey
Adding three text boxes to a panel and Left docking them to each other. It
seems they need to be added to the panel control in reverse order or else
tb3 will appear before tb2, etc. Even if the position is defined with tb1
at 0,0 and so on. Is this behavior documented or some reason for this? TIA
this.panel1.Controls.Add(this.textBox3);
this.panel1.Controls.Add(this.textBox2);
this.panel1.Controls.Add(this.textBox1);
seems they need to be added to the panel control in reverse order or else
tb3 will appear before tb2, etc. Even if the position is defined with tb1
at 0,0 and so on. Is this behavior documented or some reason for this? TIA
this.panel1.Controls.Add(this.textBox3);
this.panel1.Controls.Add(this.textBox2);
this.panel1.Controls.Add(this.textBox1);