- How to show a .NET Balloon ToolTip?
- ToolTip hint = new ToolTip();
- hint.IsBalloon = true;
- hint.ToolTipCaption = "Hello, world!"
- hint.ToolTipIcon = ToolTipIcon.Error;
- hint.Show("Please create a world.", myTextBox, 0, 0);
- toolTip.Show(string.Empty, myTextBox, 0);
- toolTip.Show("Please create a world.", myTextBox);