温馨提示×

c# statusstrip怎样显示图标文本

c#
小樊
81
2024-11-27 00:50:33
栏目: 编程语言

在C#中,要在StatusStrip控件中显示图标和文本,您需要创建一个ToolStripItem(例如ToolStripLabel或ToolStripButton),并将其Icon属性设置为所需的图标,Text属性设置为所需的文本。以下是一个简单的示例,说明如何在StatusStrip中添加一个带有图标和文本的ToolStripLabel:

using System;
using System.Windows.Forms;

namespace StatusStripExample
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();

            // 创建一个新的ToolStripLabel
            ToolStripLabel statusLabel = new ToolStripLabel();

            // 设置图标(请确保将路径替换为实际的图标文件路径)
            statusLabel.Icon = new System.Drawing.Icon("path/to/your/icon.ico");

            // 设置文本
            statusLabel.Text = "Status: Ready";

            // 将ToolStripLabel添加到StatusStrip
            statusStrip1.Items.Add(statusLabel);
        }
    }
}

在这个示例中,我们创建了一个名为statusLabel的ToolStripLabel,设置了其Icon属性为一个图标文件,并设置了Text属性为"Status: Ready"。然后,我们将这个ToolStripLabel添加到了StatusStrip控件的Items集合中。

0