It depends on what you need to prompt your tool. If you only need a tool tip with a ball shape, animation and fading effects with a custom text color and background, itβs easier to use the ToolTip control
// Create your control System.Windows.Forms.Button trialButton = new Button(); trialButton.Text = "Trial Button"; // Tool tip string string toolTipText = "Hello World"; // ToolTip toolTip = new ToolTip(this.components); ToolTip toolTip = new ToolTip(); toolTip.ToolTipTitle = "ToolTip Title"; toolTip.UseAnimation = true; toolTip.UseFading = true; toolTip.IsBalloon = true; toolTip.Active = true; toolTip.SetToolTip(button, toolTipText);
source share