c# - defining order of elements inside the code -



c# - defining order of elements inside the code -

using visual c# defining set of button , set of richtextbox within code (not visually) , here output.

i want alter order of elements such richtextbox above button (unlike image behind button).

how can programmatically ?

just bringtofront:

richtextbox rtb = new richtextbox() { ... }; // ... rtb.bringtofront();

or senttoback:

rtb.sendtoback();

c# visual-studio

Comments

Popular posts from this blog

ruby on rails - Devise Logout Error in RoR -

model view controller - MVC Rails Planning -

php - Working with pretty urls on apache and fastcgi after hhvm installation -