How can I make the image size smaller on a button?

后端 未结 6 1487
名媛妹妹
名媛妹妹 2021-02-05 00:00

I have a button and I want image (.ico file) and text to exist on it. My problem is that I want button\'s height to be small, but I can\'t manage to \"shrink\" the image as much

6条回答
  •  囚心锁ツ
    2021-02-05 00:28

    ImageList imageList = new ImageList();
    imageList.ImageSize = new Size(30, 30); // specify size you want
    

提交回复
热议问题