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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:06:30+00:00 2026-05-28T02:06:30+00:00

How can I display a Message box or some other similar notice show while

  • 0

How can I display a Message box or some other similar notice show while the application is busy in the background, similar to this mockup:

enter image description here

  • 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-28T02:06:31+00:00Added an answer on May 28, 2026 at 2:06 am

    There is a Busy Indicator in the WPF Extended Toolkit which I’ve used quite a lot:

    Screenshot of the busy indicator

    The toolkit is conveniently available through NuGet which makes it really easy to add it as a reference to your project. I’ve personally used it (along with many of the other useful controls in that toolkit) in almost all of my recent WPF projects.

    To use it, surround your controls in the XAML code with the busy indicator:

    <extToolkit:BusyIndicator ...>
        <Grid>
            <Button Content="Click to do stuff" />
            <!-- your other stuff here -->
        </Grid>
    </extToolkit:BusyIndicator>       
    

    Then you just have to set the IsBusy property to true when you want the popup to appear and false when it should be hidden. In a proper MVVM architecture, you would typically databind the property in XAML to a property in your viewmodel which you then set to true/false accordingly:

    <extToolkit:BusyIndicator IsBusy="{Binding IsBusy}" >
    

    But if you aren’t using MVVM, you can of course set it manually from your code behind, typically in the button click handler:

    Give the control a name to be able to refer to it from code:

    <extToolkit:BusyIndicator x:Name="busyIndicator" >
    

    And then, in your xaml.cs file:

    void myButton_Click(object sender, RoutedEventArgs e)
    {
        busyIndicator.IsBusy = true;
        // Start your background work - this has to be done on a separate thread,
        // for example by using a BackgroundWorker
        var worker = new BackgroundWorker();
        worker.DoWork += (s,ev) => DoSomeWork();
        worker.RunWorkerCompleted += (s,ev) => busyIndicator.IsBusy = false;
        worker.RunWorkerAsync();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way I can display an error message in a popup box?
How can i display an alert message or alert box when getting the information(not
Can anyone tell me how I can display a status message like 12 seconds
I know I can use something like MessageBox.Show(some error) but I'm talking about an
I'm trying to display a Message Box with both an icon and buttons using
I am trying to show a message box from PowerShell with yes and no
I have using android alert dialog builder to display the some user message(String) as
How can I produce a messagebox in a C# Win Forms application that displays
How i can display all applications icons and name which are installed in device
Possible Duplicate: Is there a tool that can display a SVN repository visually (

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.