gpt4 book ai didi

c# - 如何为 ContextMenuStrip 项设置图像?

转载 作者:行者123 更新时间:2023-11-30 16:29:59 29 4
gpt4 key购买 nike

如何为 ContextMenuStrip 项设置图像?我正在使用 C#。

最佳答案

您需要设置 ToolStripItem.DisplayStyle属性(property)给Image然后设置 image属性

这是来自 MSDN 的示例

  • 从文件中获取图像
  • 设置样式为图片和文字
  • 将图像对齐到 MiddleLeft
  • 设置主题名称
  • 设置文本对齐方式为MiddleRight
  • 设置文本
  • 并添加一个 Click 事件处理程序

示例

this.toolStripButton1.Image = Bitmap.FromFile("c:\\NewItem.bmp");
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText;
this.toolStripButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Text = "&New";
this.toolStripButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);

关于c# - 如何为 ContextMenuStrip 项设置图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6019600/

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