Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Is there any way to show a hover/tooltip text for a ToolStripButton?

    Hi guys,
    anyone knows the proper way to show a hover/tooltip text for a ToolStripButton?
    I have a Tooltrip where I'd like to show a ToolStripButton with an icon and no title but showing some sort of hint text on mouse hover.
    I supposed that could be obtained setting the title text and canHover/showHover to true, but that way doesn't work.

    Cheers
    Davide

    Using SmartClient Version: SC_SNAPSHOT-2010-12-31/LGPL Development Only (built 2010-12-31)

    #2
    Ok, now it's clear that I am a moron.
    This is the solution
    Code:
    toolStripButton.setPrompt (hoverText)
    Cheers
    Davide

    Comment

    Working...
    X