答案 0 :(得分:1)
使用以下代码:
private void SetMyButtonIcon()
{
// Assign an image to the button.
button1.Image = Image.FromFile("C:\\Graphics\\My.ico");
// Align the image and text on the button.
button1.ImageAlign = ContentAlignment.MiddleRight;
button1.TextAlign = ContentAlignment.MiddleLeft;
}
您可以使用其他按钮属性,例如
Overlay:
图片和文字在控件上共享相同的空间。
ImageBeforeText:
图像在控件文本之前水平显示。
TextBeforeImage:
文本在控件图像之前水平显示。
ImageAboveText:
图像垂直显示在控件文本上方。
TextAboveImage:
文本垂直显示在控件的图像上方。