C# 告知如何在选择工具条上的图像后对其进行更改
我希望在选择工具条上的按钮后更改其图像。图像属性是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现有效的代码是:
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
首先,您应该将 CheckOnClick 属性设置为 true 然后,可以保存按钮的最后状态
First, you should set the CheckOnClick property to true then, it is possible to save the last status of button
创建一个
ImageList imageList1;
并添加您需要的图像。
要更改
toolStripButton 图像
,您必须执行以下操作:Create an
ImageList imageList1;
and add the images you require.
To change the
toolStripButton image
you must do: