单击按钮时的气球工具提示?

时间:2010-12-16 17:55:16

标签: c# winforms tooltip

我没有向用户发送MessageBox,而是想在点击的按钮旁边发送一个粉碎气球窗口,上面有一些文字,类似于任务栏通知气球工具提示。

单击按钮时,如何为windowsform制作此类气球?

2 个答案:

答案 0 :(得分:5)

在表单上使用以下控件

Button button1;
ToolTip toolTip1;

您可以使用此代码:

private void button1_Click(object sender, EventArgs e)
{
    toolTip1.SetToolTip(sender as Control, "Some text in balloon!");
}

设置toolTip1.IsBalloon = true

答案 1 :(得分:1)