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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:43:05+00:00 2026-05-12T06:43:05+00:00

I Have a ListView with many Items that is to be loaded in search.

  • 0

I Have a ListView with many Items that is to be loaded in search.
And I’d like to provide user the richer user interface so that when loading, I’d display a rotating circle (known from AJAX waiting).

I realize that I’ll have to go into Threads or something, but as I’ve never done this before in WPF, I’m sure there is something better than Threads in WPF (or a simpe BackgroundWorker).

Anyways, the point is to display that animation while loading.
Any idea? Thanks!

  • 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-12T06:43:05+00:00Added an answer on May 12, 2026 at 6:43 am

    OK I’ve got a working solution now.

    I have a UserControl that contains that animation. It is located somewhere in my XAML code like this: <customControls:LoadingAnimation x:Name="LoadingAnimation" />. This control is loaded when neede by calling

    LoadingAnimation.Show();
    

    Now when I click on a Button to do the time-consuming work, before I call BeginInvoke() I
    load that animation.

    Then when the hard work is finished I call LoadingAnimation.Hide().
    Very simple! I add code for the others:

    private void SearchClick(object sender, RoutedEventArgs e)
    {
         LoadingAnimation.Show();
    
         new StringDelegate(DoSearch).BeginInvoke("TextToSearch", null, null);
    }
    
    private void DoSearch(string searchText)
    {
        object result = /* Do the time consuming work */    
    
        Dispatcher.BeginInvoke(DispatcherPriority.Normal,
             new ResultDelagate(UpdateUserInterface), result);
    }
    
    private void UpdateUserInterface(object result)
    {
        LoadingAnimation.Hide();            
    
        DataContext = result as /* what you want */;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem that i have a listview for many data items, it
I have a listview and I add many items into that list. However, when
I have listview control.There is an option to remove selected items.After the user removes
I have ListView that uses a GridView to display several columns of data. Two
I have a WPF ListView with many items in it. When I select several
in my app, I have a MainActivity that consist of many items that can
I have a ListView, that is defined very simply in my XAML like so
I have a ListView with custom Adapter . To be honest, I have many
I have a list view with many rows and have it set so that
I have ListView that has the following EditItemTemplate: <EditItemTemplate> <tr style=> <td> <asp:LinkButton ID=UpdateButton

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.