带图像和文本的WinForms按钮

时间:2013-07-12 09:13:16

标签: .net winforms .net-3.5

我的WinForm上有一个标准按钮,带有一些文字和图片。它看起来像这样:

Button

如何设置按钮以使图像与文本左侧对齐?我尝试了ImageAlign,但似乎没有考虑按钮的文字。

2 个答案:

答案 0 :(得分:29)

刚刚找到它。

您需要设置:

ImageAlignMiddleRight

TextImageRelationImageBeforeText

TextAlignMiddleCenter

答案 1 :(得分:14)

为此,您可以使用TextImageRelation属性将其设置为ImageBeforeText

  

指定图像在控件文本之前水平显示。

enter image description here