4

我的 WinForms 应用程序中有一个按钮,我向其中添加了图像和文本。我将文本向右对齐并想将背景图像向左对齐,但发现这是不可能的。

有没有办法做到这一点?

我也尝试在按钮上设置图像,但无法在按钮属性中调整大小。

有人可以帮我解决这个问题吗?非常感谢。

如果不可能,我将不得不调整 mspaint 中的每个图像的大小。

这是结果(作为背景):

在此处输入图像描述

我需要将 BackgroundImage 左对齐。

这是使用对齐时的图像结果(无法调整大小)

在此处输入图像描述

4

3 回答 3

8
  1. 使用Image属性设置您的图像(确保它适合按钮高度,如果您从项目资源文件夹中打开它,您可以更改图像大小)
  2. 设置ImageAlignMiddleLeft
  3. 设置TextAlignMiddleRight

不要更改任何其他内容。即TextImageRelation应该是Overlay。结果:

在此处输入图像描述

于 2013-09-05T13:34:34.960 回答
6

设置 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;
于 2013-09-05T13:47:03.707 回答
2

您可以使用该Image属性而不是BackgroundImage. 您可以稍后使用该ImageAlign属性设置对齐。

于 2013-09-05T13:27:05.123 回答