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
Post a Comment