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