在winforms app中更改按钮图像大小

时间:2017-07-03 06:56:21

标签: c# winforms

我试图让按钮上的图标更小,但我无法弄清楚如何。

enter image description here

图像的大小显示为灰色。

enter image description here

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:4)

您需要调整Image的大小,然后将其设置为Buttons图片:

// where 'MyImage' is the Image to display on the Button
this.Button1.Image = (Image)(new Bitmap(MyImage, new Size(32,32)));