Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
Is it possible to assign tooltip to a content pane ?
posted

 

objContentPane.ToolTip ="test";

doesn't function.. :(

Any help is appreciated!

 

Thanks,

Nagendra 

  • 54937
    Offline posted

    That element is a PaneTabItem. That is the element that provides the Tab in an UnpinnedTabArea or when in a TabGroupPane. So you would probably have to create your own Style for PaneTabItem that sets the ToolTip property. If you want it to show the ToolTip of the ContentPane then you can bind it to its Pane.ToolTip but the tooltip will also show when over the contentpane itself (e.g. when the flyout is displayed and the mouse is over the element) so you may want to create your own attached property and bind the ToolTip to that.

  • 265
    posted

    I'm not successful yet! Need Help...