Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
962 views
in Technique[技术] by (71.8m points)

winforms - How to show a .NET Balloon ToolTip?

How do i show an IsBalloon ToolTip in WinForms?

Right now i try:

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

Unfortunately the balloon doesn't point to (0, 0) (relative to the control), but shows up at (0,0) (relative to the control):

What is the correct way to show a .NET Balloon ToolTip?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Known bug. Call it twice, first empty:

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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...