C# one statusStrip for multi tabs?
My form has multi tab pages, can I use 1 statusStrip for all those tabs? Because when I change from tab_page1 to tab_page2, the statusStrip at the bottom of my form disappeare开发者_Python百科d. Thanks in advance for your help.
Looks like your StatusStrip
is located within a TabPage
. It should be on Form
along with TabControl
so that all tabs
in TabControl
and other controls can use it.
精彩评论