标签: c# winforms
我试图让按钮上的图标更小,但我无法弄清楚如何。
图像的大小显示为灰色。
知道如何解决这个问题吗?
答案 0 :(得分:4)
您需要调整Image的大小,然后将其设置为Buttons图片:
Image
Buttons
// where 'MyImage' is the Image to display on the Button this.Button1.Image = (Image)(new Bitmap(MyImage, new Size(32,32)));