c# - Windows Forms toolstrip q -


i have application tab control. tab control dock property set fill.

if place toolstrip along top of screen, tabs on tab control hidden beneath toolstrip.

how include toolstrip , avoid having tabs hidden beneath it?

you can this:

yourtoolstrip.dock = dockstyle.top; yourtabcontrol.dock = dockstyle.fill; yourtabcontrol.bringtofront(); 

Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -