Click here to Skip to main content
16,016,925 members

Comments by kamleshnikam (Top 1 by date)

kamleshnikam 27-Jan-15 6:51am View    
Deleted
For single button tooltip i have used

buttonToolTip.UseFading = false;
buttonToolTip.UseAnimation = false;
buttonToolTip.IsBalloon = false;
buttonToolTip.ShowAlways = true;
buttonToolTip.AutoPopDelay = 5000;
buttonToolTip.InitialDelay = 1000;
buttonToolTip.ReshowDelay = 0;

buttonToolTip.SetToolTip(button1,"Hello");

for this code i need close button on tooltip. how to do it.
Please help me.