C#:按钮图像在底部被剪裁

C#: button image gets clipped on the bottom

正如您在 this image 中看到的那样,按钮上设置的图像无缘无故地被剪掉了底部。图像大小为 24x24px,按钮的 AutoSize 属性 设置为 True.

按钮直接位于 window 上,因此不会有任何布局干扰其大小。

<button> 控件内有隐式边距。如果您扩大按钮的高度,剪裁将消失。

将图像设置为按钮的 "BackgroundImage" 属性,然后将按钮的 "BackgroundImageLayout" 属性 设置为 "Stretch"。