Winform vb.net - 如何更改选项卡的颜色?
如何更改选项卡页标题的颜色,即显示在选项卡始终可见的部分上的文本?
How can I change the color of the Tab Page Header, the text that appears on the part of the Tab that is always visible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许不是最优雅的解决方案,但是.. 将 TabControl 的 DrawMode 更改为 OwnerDrawFixed 并自己处理绘图。查看 MSDN 获取示例。
Maybe not the most elegant solution but.. Change the DrawMode of the TabControl to OwnerDrawFixed and handle the drawing yourself. Check MSDN for examples.
除了对 DrawItem 事件进行编码之外,还可以根据需要跟踪此事件以更改选项卡页文本。
In addition to coding the DrawItem Event, followup with this event to change the tabpage text whenever you want to.