gpt4 book ai didi

c# - 按钮里面的图标?

转载 作者:IT王子 更新时间:2023-10-29 04:29:54 26 4
gpt4 key购买 nike

如何在按钮内添加如下图所示的图标?我似乎找不到如何去做。

http://i.stack.imgur.com/6HGcK.jpg

最佳答案

在 WinForms 中使用 Button.Image ( MSDN ) 如下:

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;
}

并且您可以使用 Button.TextImageRelation 属性来设置 position of text and image相对于彼此:

  • Overlay:图像和文本在控件上共享同一空间。
  • ImageBeforeText:图像水平显示在控件文本之前。
  • TextBeforeImage:文本水平显示在控件图像之前。
  • ImageAboveText:图像垂直显示在控件文本的上方。
  • TextAboveImage:文本垂直显示在控件图像的上方。

关于c# - 按钮里面的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11483655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com