TabControl 选项卡标题在更改字体时会调整大小
我有一个应用程序,当它在 Vista 中运行时,它将每个控件的字体更改为 SegoeUI。 除了选项卡页的标题(从一个选项卡切换到另一个选项卡时单击的按钮)之外,它工作正常。
选项卡页标题不会垂直增长以适应更大的字体大小,它们始终保持相同的高度。
是否有一个属性允许 TabControl 处理这个问题? (我尝试过 AutoSizeMode,但它只处理选项卡的宽度)
如果没有,那么以编程方式根据字体大小调整选项卡页标题大小的最佳方法是什么?
I have an application that changes the font of every control to SegoeUI when it is run in Vista. It works fine, except for headings of tabpages (the buttons to click when switching from one tab to another).
Tab page headings do not grow vertically to accommodate a larger font size, they always remain the same height.
Is there a property that will allow the TabControl to handle this? (I have tried AutoSizeMode, but it only deals with a tab's width)
If not, what is the best way programmatically to resize the tabpage headings based on the font size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项卡控件上有一个 ItemSize 属性,您可以设置该属性来更改选项卡本身的大小。 另外,为了帮助您获取文本的大小,Graphics 对象上有一个 MeasureString() 方法,它将返回一个包含给定文本大小的 SizeF 结构。 这可以帮助您确定是否需要更改 ItemSize 属性。 一些粗略的代码:
There is an ItemSize property on the tab control that you can set to change the size of the tabs themselves. Also, to help you out with getting the size of the text, there's a MeasureString() method on the Graphics object that will give you back a SizeF struct with the size of the given text. That can help you determine if you need to change the ItemSize property. Some rough code: