在右侧显示 TabPage 标题图像

发布于 2024-11-24 20:27:49 字数 149 浏览 2 评论 0原文

当您为 TabPage 设置 ImageIndex(或 ImageKey)时,选项卡标题中的图像将显示在左侧。

在此处输入图像描述

如何将其移至右侧?

When you set ImageIndex (or ImageKey) for TabPage control image in tab's header is shown on the left.

enter image description here

How can i move it to the right?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

提赋 2024-12-01 20:27:49

您需要将 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.

桜花祭 2024-12-01 20:27:49

可能是如果你想要像这个这样的东西,在 tabPage 上创建关闭按钮...

may be if you want something like this, create close button on tabPage...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文