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

Line ending issue with Mercurial or Visual Studio -

java - Jtable duplicate Rows -

java - Run a .jar on Heroku -