CF - TabControl - 如何使选项卡更大?
我有一个带有选项卡页的选项卡控件(参见)。
标签太小了...有人可以告诉我如何让它们变大吗?
I have a tab control with tab pages (cf).
The tabs are too small ... can some1 tell me how can i make them bigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
增加 TabControl 的字体大小。这样就可以照顾到身高了。如果它们不够宽,则在其中添加更多文本。或者将 SizeMode 属性设置为“固定”。
Increase the size of the TabControl's Font. That takes care of the height. If they are not wide enough then put more text in them. Or set the SizeMode property to Fixed.
选项卡大小由选项卡控件上的
ItemSize
属性设置。The tab size is set by the
ItemSize
property on the tab control.将 SizeMode 属性更改为 FillToRight\FillToLeft 即可解决问题。
然后您可以放大字体,选项卡的高度和宽度都会增加。
Changing SizeMode property to FillToRight\FillToLeft does the trick.
Then you can enlarge the font and both height and width of the tab will grow.
在属性窗口中更改 ItemSize 属性。您可以使用此属性更改选项卡的宽度和高度。
Change ItemSize property in properties window. You can change width and height of the tabs using this property.