Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 223693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:14:44+00:00 2026-05-11T19:14:44+00:00

I have an application that has upwards of a hundred different ToolTips set on

  • 0

I have an application that has upwards of a hundred different ToolTips set on a Ribbon control. All of the ToolTips pop up rather quickly (about half a second), and I would like to increase the pop up delay. After some research it appears the only way to do this in WPF is through the ToolTipService.InitialShowDelay property.

My question is, do I have to go through the XAML and explicitly say

ToolTipService.InitialShowDelay="2000"

For every single control that has a ToolTip? Or is there some way to set this property globally, using something like a Style?

Thanks for any ideas.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T19:14:44+00:00Added an answer on May 11, 2026 at 7:14 pm

    Unfortunately, there’s no easy way to do this. Ideally, you’d set ToolTipService.InitialShowDelay on FrameworkElement and let it propagate from there, but it turns out that doesn’t seem to work.

    Instead, you can set it on each type of control you want to set it on, for instance:

    <Style TargetType="RibbonButton">
        <Setter Property="ToolTipService.InitialShowDelay" Value="2000"/>
    </Style>
    <Style TargetType="RibbonToggleButton">
        <Setter Property="ToolTipService.InitialShowDelay" Value="2000"/>
    </Style>
    <Style TargetType="RibbonDropDownButton">
        <Setter Property="ToolTipService.InitialShowDelay" Value="2000"/>
    </Style>
    

    etc.

    Although this is a pretty verbose way of doing it, at least you only have to set it on each type of control and not every control itself – and if you’re using it in the Ribbon, then there’s only a handful of controls to begin with.

    To save yourself some hassle should you ever want to change the value, you may want to architect the above code using a resource value:

    <sys:Int32 x:Key="ToolTipInitialShowDelay">2000</sys:Int32>
    <Style TargetType="RibbonButton">
        <Setter Property="ToolTipService.InitialShowDelay" 
                Value="{StaticResource ToolTipInitialShowDelay}"/>
    </Style>
    <Style TargetType="RibbonToggleButton">
        <Setter Property="ToolTipService.InitialShowDelay" 
                Value="{StaticResource ToolTipInitialShowDelay}"/>
    </Style>
    <Style TargetType="RibbonDropDownButton">
        <Setter Property="ToolTipService.InitialShowDelay" 
                Value="{StaticResource ToolTipInitialShowDelay}"/>
    </Style>
    

    Alternatively, if you are not already using BasedOn styles, you could shorten it to:

    <Style x:Key="ToolTipDefaults">
        <Setter Property="ToolTipService.InitialShowDelay" Value="2000"/>
    </Style>
    <Style TargetType="RibbonButton" BasedOn="{StaticResource ToolTipDefaults}"/>
    <Style TargetType="RibbonToggleButton" BasedOn="{StaticResource ToolTipDefaults}"/>
    <Style TargetType="RibbonDropDownButton" BasedOn="{StaticResource ToolTipDefaults}"/>
    

    The limitation to this approach being that a style can only be based on one parent style, so if you’re already using this pattern, you won’t be able to do this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that has a list of buttons and has customized tooltips.
I have an application that has a ListView control with scrollbars, and it has
I have an application that has two different login windows for two different types
I have an application that has a chronometer, I need to set the start
I have an application that has to load various H2 database files for different
I have an application that has had a single table where all my data
I have an application that has many different types of objects that each persist
We have an application that has one or more text console windows that all
I have an application that has 2 beans with the same name, but which
We have an application that has a database full of polygons (currently stored as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.