在右侧显示 TabPage 标题图像
当您为 TabPage 设置 ImageIndex(或 ImageKey)时,选项卡标题中的图像将显示在左侧。
如何将其移至右侧?
When you set ImageIndex (or ImageKey) for TabPage control image in tab's header is shown on the left.
How can i move it to the right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 DrawMode 属性设置为 OwnerDrawFixed 并实现 DrawItem 事件。 MSDN 库文章中有一个很好的示例。
先解决下一个问题:您需要为选项卡控件实现 MouseUp 事件并迭代选项卡,调用 GetTabRect()。这可以让您找出单击了哪个选项卡,然后找出鼠标单击是否位图上。
You'll need to set the DrawMode property to OwnerDrawFixed and implement the DrawItem event. There's a good example in the MSDN Library article for it.
Pre-empting the next question: you'll need to implement the MouseUp event for the tab control and iterate the tabs, calling GetTabRect(). That lets you find out what tab was clicked and then find out if the mouse click was on the bitmap.
可能是如果你想要像这个这样的东西,在 tabPage 上创建关闭按钮...
may be if you want something like this, create close button on tabPage...