I'm trying to display my own custom tooltip with an image, but the built-in tooltip does it all badly. He still appears where he is not needed.
I create a ToolStripButton this way:
ToolStripButton btn = new ToolStripButton(); btn.Text = name; btn.ToolTipText = null;
What else can I do to disable it?

source share