标签: .net winforms .net-3.5
我的WinForm上有一个标准按钮,带有一些文字和图片。它看起来像这样:
WinForm
如何设置按钮以使图像与文本左侧对齐?我尝试了ImageAlign,但似乎没有考虑按钮的文字。
ImageAlign
答案 0 :(得分:29)
刚刚找到它。
您需要设置:
ImageAlign至MiddleRight
MiddleRight
TextImageRelation至ImageBeforeText
TextImageRelation
ImageBeforeText
TextAlign为MiddleCenter
TextAlign
MiddleCenter
答案 1 :(得分:14)
为此,您可以使用TextImageRelation属性将其设置为ImageBeforeText:
指定图像在控件文本之前水平显示。