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

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -