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 550867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:20:01+00:00 2026-05-13T11:20:01+00:00

I simply want to open up the WPF Popup with a delay, sort of

  • 0

I simply want to open up the WPF Popup with a delay, sort of like a ToolTip.

How can I achieve this?

And, by the way, Popup.PopupAnimation = PopupAnimation.Fade … fades in too quickly. I want at least half a second in there.

  • 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-13T11:20:02+00:00Added an answer on May 13, 2026 at 11:20 am

    First off … the credit for this answer goes to Eric Burke. He answered this very question posted in the WPF Disciples group. I thought it would be useful to put this answer out on StackOverflow too.

    Basically, you need to animate the IsOpen property of the Popup with with a DiscreteBooleanKeyFrame.

    Check out the following xaml (which can easily be pasted into Kaxaml or another loose xaml editing utility):

    <Page
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    >
        <ContentPresenter>
            <ContentPresenter.ContentTemplate>
                <DataTemplate>
                    <Grid>
                        <CheckBox
                            x:Name="cb"
                            Width="100"
                            Height="40"
                            Content="Hover Over Me"
                        />
                        <Popup
                            x:Name="popup"
                            Placement="Bottom"
                            PlacementTarget="{Binding ElementName=cb}"
                        >
                            <Border Width="400" Height="400" Background="Red"/>
                        </Popup>
                    </Grid>
                    <DataTemplate.Triggers>
                        <Trigger SourceName="cb" Property="IsMouseOver" Value="True">
                            <Trigger.EnterActions>
                                <BeginStoryboard x:Name="bsb">
                                    <Storyboard>
                                        <BooleanAnimationUsingKeyFrames
                                            Storyboard.TargetName="popup"
                                            Storyboard.TargetProperty="IsOpen"
                                            FillBehavior="HoldEnd"
                                        >
                                            <DiscreteBooleanKeyFrame KeyTime="0:0:0.5" Value="True"/>
                                         </BooleanAnimationUsingKeyFrames>
                                    </Storyboard>
                                </BeginStoryboard>
                            </Trigger.EnterActions>
                            <Trigger.ExitActions>
                                <StopStoryboard BeginStoryboardName="bsb"/>
                            </Trigger.ExitActions>
                        </Trigger>
                    </DataTemplate.Triggers>
                </DataTemplate>
            </ContentPresenter.ContentTemplate>
        </ContentPresenter>
    </Page>
    

    Please note that I modified his original solution slightly … to trigger the IsOpen on mouse over versus checking the CheckBox as he had it. All in the attempt to make Popup behave a little like ToolTip.

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

Sidebar

Related Questions

Im sorry for this probably dumm question, but I want to simply open modals
I simply want to popup an Alertbox in AS3. I am using Flashdevelop and
I am using HTML5 inputs to select a date. I simply want to open
Play with it here: http://jsbin.com/ocicu4/4/edit Simple Accordion, I only want one section open at
I want to know how to open and manipulate a simple image file in
I want to create an extremely simple iPhone program that will open a telnet
I simply want to edit some commits with git rebase -i HEAD~2 inside the
I simply want to post an image and comment from my own site to
I simply want to fill-up cells in my spreadsheet from a VBA function. By
I simply want to show off a model in a table that is paginated

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.