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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:11:10+00:00 2026-06-04T01:11:10+00:00

I have a ListView bound to ObservableCollection. Data are loaded from the internet and

  • 0

I have a ListView bound to ObservableCollection. Data are loaded from the internet and then added to collection. The download takes few seconds and I want to indicate user that the data is loading.

I created an UserControl that indicates activity. I placed it inside of ControlTemplate.

<ControlTemplate x:Key="ListViewControlTemplate1" TargetType="{x:Type ListView}">
    <Grid>
        <local:ActivityIndicatorControl 
            HorizontalAlignment="Center" 
            Height="Auto" 
            Margin="0" 
            VerticalAlignment="Center"/>
    </Grid>
</ControlTemplate>

I would like to bind Visibility of ActivityIndicatorControl to a property, let’s say bool IsLoading and set it to Visible/Collapsed correspondingly.

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-06-04T01:11:11+00:00Added an answer on June 4, 2026 at 1:11 am

    I would recommend using a IValueConverter to accept your boolean, and return a member of Visibility enumeration.

    Here is a good example of one: http://jeffhandley.com/archive/2008/10/27/binding-converters—visibilityconverter.aspx

    The XAML would look like this:

    First you define a resource for the converter (put this in a resource dictionary):

    <local:BooleanToVisibilityConverter x:Key="myBoolToVisibilityConverter" />
    

    And then change your template like this:

    <ControlTemplate x:Key="ListViewControlTemplate1" TargetType="{x:Type ListView}">
        <Grid Visibility="{Binding IsLoading, Converter={StaticResource myBoolToVisibilityConverter}}">
            <local:ActivityIndicatorControl 
                HorizontalAlignment="Center" 
                Height="Auto" 
                Margin="0" 
                VerticalAlignment="Center"/>
        </Grid>
    </ControlTemplate>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListView whose ItemsSource is bound to an ObservableCollection. The collection is
i have a ListView which contains objects bound from an collection. The representation of
In my latest project, I have a ListView that is bound to an ObservableCollection
In WPF, I have a ListView bound to an ObservableCollection in the code-behind. I
I have a ListView bound to a collection of items. I do not want
I have a ListView bound to a Generic List collection. I need to be
I have a simple ListView bound to a collection of Calculations. The view calls
I have a ListView in a ListActivity that's bound to some data. I have
I have a listview bound to a collection of objects. One of the properties
I have a WPF ListView with several columns bound to a custom collection. The

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.