Assign new ToolTip instance to ToolStripButton

  • Thread starter Thread starter Jesper, Denmark
  • Start date Start date
J

Jesper, Denmark

Hi,

I need some extra funtionality provided by the ToolTip control for a
ToolStripButton.

However I cannot figure out how to assign a ToolTip instance to a
ToolStripButton.

Is there a way of doing this, or can I get a handle to the already contained
ToolTip object.

Thanks.
 
Jesper,

You can't assign it to the ToolStripButton directly, but you could
assign the tool tip to the hosting ToolStrip. You would have to add an
event handler for the Popup event on the Tooltip then, and override the
content based on the position of the mouse.
 
Back
Top