我的 WinForms 应用程序中有一个按钮,我向其中添加了图像和文本。我将文本向右对齐并想将背景图像向左对齐,但发现这是不可能的。
有没有办法做到这一点?
我也尝试在按钮上设置图像,但无法在按钮属性中调整大小。
有人可以帮我解决这个问题吗?非常感谢。
如果不可能,我将不得不调整 mspaint 中的每个图像的大小。
这是结果(作为背景):
我需要将 BackgroundImage 左对齐。
这是使用对齐时的图像结果(无法调整大小)
Image
属性设置您的图像(确保它适合按钮高度,如果您从项目资源文件夹中打开它,您可以更改图像大小)ImageAlign
为MiddleLeft
TextAlign
为MiddleRight
不要更改任何其他内容。即TextImageRelation
应该是Overlay
。结果:
设置 Button 的这些属性。
ImageAlign to MiddleRight
TextImageRelation to ImageBeforeText
TextAlign as MiddleCenter
让它在 Button 上调整大小。见下文:
Bitmap image = Bitmap.FromFile(oFile) as Bitmap;
Bitmap resized = new Bitmap(image, new Size(30, 30));
button1.Image = resized;
button1.Text = "Button";
button1.ImageAlign = ContentAlignment.MiddleLeft;
button1.TextImageRelation = TextImageRelation.ImageBeforeText;
button1.TextAlign = ContentAlignment.MiddleRight;
您可以使用该Image
属性而不是BackgroundImage
. 您可以稍后使用该ImageAlign
属性设置对齐。