如何在 Winforms 中向 TabControl 的标签添加图像?
如何将图像添加到选项卡控件上的选项卡标签?
就像这样:
但在像这样的普通标签页上:
我知道要执行此操作,您需要添加一个图像列表并为要使用的图像创建索引,但我在谷歌上搜索时没有找到任何示例。有什么帮助吗?
How do you add a image to a tab label on a tab control?
Just like this:
But on a normal tab page like this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ImageList 控件添加到窗体中(这应该位于工具箱中)。通过转到属性选项卡并设置 Images 属性,将所需的图像添加到图像列表中。
然后转到选项卡控件的属性;并在 ImageList 属性中选择您在上一步中创建的图像列表,然后在 TabPages 属性中打开选项卡页面集合编辑器(通过单击 按钮)选择一个页面,然后将 ImageIndex 属性设置为索引图像列表中的图像。
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.
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.