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

我希望在选中后更改工具条上按钮的图像。 image属性是system.drawing.bitmap,并保存到Properties Resources.resx文件中。 谢谢你提前 对逻辑的解释也会很好!     
已邀请:
我发现的代码是:
toolStripButton.Image = Image.FromFile("directory of your file");
在按钮单击事件期间,只需调用此代码,图像就会发生变化     
首先,您应该将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;
            }
    
创建一个
ImageList imageList1;
 并添加您需要的图像。 要更改
toolStripButton image
,您必须:
toolStripButton1.Image = imageList1.Images[imageIndex];
    

要回复问题请先登录注册