我不希望向用户发送MessageBox,而是要在单击按钮旁边发送一个带有一些文本的smaill气球窗口,类似于任务栏通知气球工具提示。
单击按钮后,如何为Windows窗体制作这种气球?
最佳答案
通过表单上的以下控件,
Button button1;
ToolTip toolTip1;
您可以使用以下代码:
private void button1_Click(object sender, EventArgs e)
{
toolTip1.SetToolTip(sender as Control, "Some text in balloon!");
}
设置
toolTip1.IsBalloon = true
关于c# - 单击按钮时的气球工具提示?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4463837/