C# 告知如何在选择工具条上的图像后对其进行更改

发布于 2024-10-10 00:25:54 字数 112 浏览 3 评论 0原文

我希望在选择工具条上的按钮后更改其图像。图像属性是system.drawing.bitmap,并保存到Properties\Resources.resx 文件中。 预先感谢

逻辑的解释也很好!

I am looking to change the image of the button on the tool strip after it is selected. The image property is system.drawing.bitmap and was saved to Properties\Resources.resx file.
Thanks in advancen

An explanation of the logic would be nice too!

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

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

发布评论

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

评论(3

提笔落墨 2024-10-17 00:25:54

我发现有效的代码是:
toolStripButton.Image = Image.FromFile("文件的目录");
在按钮单击事件期间,只需调用此代码,图像就会发生变化

The code I found that works is:
toolStripButton.Image = Image.FromFile("directory of your file");
During a button click event, just call this code, and the image will change

朱染 2024-10-17 00:25:54

首先,您应该将 CheckOnClick 属性设置为 true 然后,可以保存按钮的最后状态

this.toolStripMuteButton.CheckOnClick = true;

if (toolStripMuteButton.Checked)
            {
                this._lastMicVol = tag.Volume;
                this.toolStripMuteButton.Image = lobal::Properties.Resources.microphone2;
                tag.Volume = 0;
            }
            else
            {
                this.toolStripMuteButton.Image = global::Properties.Resources.microphone1;
                tag.Volume = this._lastMicVol;
            }

First, you should set the CheckOnClick property to true then, it is possible to save the last status of button

this.toolStripMuteButton.CheckOnClick = true;

if (toolStripMuteButton.Checked)
            {
                this._lastMicVol = tag.Volume;
                this.toolStripMuteButton.Image = lobal::Properties.Resources.microphone2;
                tag.Volume = 0;
            }
            else
            {
                this.toolStripMuteButton.Image = global::Properties.Resources.microphone1;
                tag.Volume = this._lastMicVol;
            }
別甾虛僞 2024-10-17 00:25:54

创建一个
ImageList imageList1;
并添加您需要的图像。

要更改 toolStripButton 图像,您必须执行以下操作:

toolStripButton1.Image = imageList1.Images[imageIndex];

Create an
ImageList imageList1;
and add the images you require.

To change the toolStripButton image you must do:

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