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

  • Home
  • SEARCH
  • 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 1006551
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:28:45+00:00 2026-05-16T08:28:45+00:00

I have a class that has purely static Methods and properties. I am calling

  • 0

I have a class that has purely static Methods and properties. I am calling an async method on the class “Load” that asks a web service for a chunk of data, which then fires an event that executes the return method, “LoadCompleted”. I have no idea how long the call is going to take (the difference between calling the “Load” method, then the “LoadCompleted” getting called).

I would like to block the application from proceeding any further until the callback method has been raised (as the app will try and get stuff from this class, which isn’t populated until the “LoadComplete” method sets the data).
How would i go about doing this?

  • 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-16T08:28:46+00:00Added an answer on May 16, 2026 at 8:28 am

    Blocking the main UI thread should be avoided with extreme prejudice.

    I would use the BusyIndicator control from the Silverlight Toolkit:-

    <UserControl x:Class="StackoverflowSpikes.MainPage"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit">
    
        <toolkit:BusyIndicator x:Name="busyInd" >
            <Grid x:Name="LayoutRoot">
              <!-- The rest of your content -->
            </Grid>
        </toolkit:BusyIndicator>
    
    </UserControl>
    

    Before calling Load use:-

    busyInd.IsBusy = true;
    

    then on LoadComplete use:-

    busyInd.IsBusy = false;
    

    This will lock out user input on the UI without blocking the main thread and give the use some feedback as to why they can’t click anything right now. You can supply your own content for the busy message using the BustContent property. Of course if you don’t like the way it looks you can style it to your preference.

    If you want to get all MVVM you can bind the IsBusy property to a VM property that indicates that the VM doesn’t want anything changing right now.

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

Sidebar

Related Questions

I have a class that has some properties. And I want something that calculates
I have a base class that has a private static member: class Base {
You have a method on a class that has 2 parameters, one of which
I have a class that has a Generic type G In my class model
I have a class that has a vector of another class objects as a
Let's say I have a class that has a member called data which is
I have an entity class that has a property with an underlying db column
Let's say I have one class Foo that has a bunch of logic in
I have a page base class that has no .aspx file and so I
I have a base class Foo that has an Update() function, which I want

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.