c# - In Windows Forms, is there a control that shows a text overlay like a tooltip without all the tooltip behavior? -


i want kind of simple text overlay shows few seconds when tell to, @ location, normal tooltip.

however, don't want normal tooltip behavior of automatically showing when mouse hovers on control it's associated with. can disable behavior on normal tooltip, or there other control can use?

you can call tooltip yourself:

private void button1_click(object sender, eventargs e) {   tooltip tip = new tooltip();   tip.tooltiptitle = "title";   tip.show("hello", button1, 10, button1.height - 6, 5000); } 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -