如何在 Winforms 中向 TabControl 的标签添加图像?

发布于 2024-09-29 10:04:43 字数 250 浏览 2 评论 0原文

如何将图像添加到选项卡控件上的选项卡标签?

就像这样: alt text

但在像这样的普通标签页上:alt text

我知道要执行此操作,您需要添加一个图像列表并为要使用的图像创建索引,但我在谷歌上搜索时没有找到任何示例。有什么帮助吗?

How do you add a image to a tab label on a tab control?

Just like this:
alt text

But on a normal tab page like this:alt text

I understand to do this you need to a add a Imagelist and make a index of the images to be used but I haven't found any examples searching on google. Any help?

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

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

发布评论

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

评论(1

纵性 2024-10-06 10:04:43
  1. 将 ImageList 控件添加到窗体中(这应该位于工具箱中)。通过转到属性选项卡并设置 Images 属性,将所需的图像添加到图像列表中。

  2. 然后转到选项卡控件的属性;并在 ImageList 属性中选择您在上一步中创建的图像列表,然后在 TabPages 属性中打开选项卡页面集合编辑器(通过单击 按钮)选择一个页面,然后将 ImageIndex 属性设置为索引图像列表中的图像。

  1. Add an ImageList control to the form (this should be in the Toolbox). Add the images you want to the image list by going to the properties tab and set the Images property.

  2. Then go to the properties for the tab control; and in the ImageList property select the image list you created in the previous step, then in the TabPages property open up the Tab Page Collection Editor (by clicking the button) select a page, then you want to set the ImageIndex property to the index of the image from the image list.

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