在C#中,要在子项目上显示工具提示,可以使用ToolTip类。以下是一个简单的示例:
using System;
using System.Windows.Forms;
namespace ToolTipExample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
InitializeToolTip();
}
private ToolTip toolTip1;
private Button button1;
private void InitializeToolTip()
{
toolTip1 = new ToolTip();
button1 = new Button();
button1.Text = "Click me";
button1.Location = new Point(10, 10);
button1.Size = new Size(75, 25);
button1.Click += new EventHandler(button1_Click);
this.Controls.Add(button1);
// Set up the ToolTip text for the Button control.
toolTip1.SetToolTip(button1, "This is a ToolTip");
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Button clicked");
}
}
}
在这个示例中,我们创建了一个名为Form1的窗体,并在其中添加了一个按钮。然后,我们使用ToolTip类创建了一个工具提示,并将其与按钮关联。最后,我们将工具提示文本设置为“这是一个工具提示”。当用户将鼠标悬停在按钮上时,工具提示将显示在按钮上方。
领取专属 10元无门槛券
手把手带您无忧上云