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
865
Displaying tooltip only in QAT
posted

Hi,

I am trying to mimic the Microsoft Office 2007 tooltip behavior for the Application Menu footer items (hidden in Application Menu but visible in Quick Access Toolbar).

Is this possible? I tried attaching a XamRibbonScreenTip in Clone handler, but at no avail.

Parents
No Data
Reply
  • 54937
    Offline posted

    It seems like we should be handling this in the control so I'll see about getting this written up. For now you could just set the ToolTip on the tool in the ApplicationMenuFooterToolbar and in its ToolTipOpening do something like:

    private void ButtonTool_ToolTipOpening(object sender, ToolTipEventArgs e)
    {
    DependencyObject d = sender as DependencyObject;
     
    if (null != d && XamRibbon.GetLocation(d) == ToolLocation.ApplicationMenuFooterToolbar)
    e.Handled = true;
    }

     

Children