如何显示.NET Balloon ToolTip?

时间:2012-01-03 18:27:32

标签: .net winforms tooltip

如何在WinForms中显示IsBalloon 工具提示

现在我尝试:

ToolTip hint = new ToolTip();
hint.IsBalloon = true;
hint.ToolTipCaption = "Hello, world!";
hint.ToolTipIcon = ToolTipIcon.Error;
hint.Show("Please create a world.", myTextBox, 0, 0);

不幸的是,气球没有指向 (0, 0)(相对于控件),但是显示 (0,0)(相对于控制):

显示.NET Balloon ToolTip的正确方法是什么?

2 个答案:

答案 0 :(得分:21)

已知错误。叫它两次,先是空的:

toolTip.Show(string.Empty, myTextBox, 0);
toolTip.Show("Please create a world.", myTextBox);

来自How do I make a tooltip point at a specific label in C#?

答案 1 :(得分:-2)

你的最后一行应该是。 Mouse_hove 操作。

回答 提示.Show("你好", Me, Me.PointToClient(New Point(0, 0)), 5000) '------------------------