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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:25:37+00:00 2026-05-26T23:25:37+00:00

I am developing a WPF application where i can read some properties from the

  • 0

I am developing a WPF application where i can read some properties from the windows services list which are currently running on my system.I am able to read the properties of a particular service and passing to a collection which in turn show up in my UI under a Listview.

I want the same scenario to be used for list of services .i.e.i am trying in the following way..but i am not sure where did i miss the point…

Here is my code

  foreach (string serviceName in sList)
        {
            ServiceController controller = new ServiceController(serviceName);


            StatusCollection.Add (new StatusData 
            { 
                Name = name, 
                Status = status 
            });
        lvStatus.DataContext = StatusCollection;
        lvStatus.ItemsSource = StatusCollection;
        }

 <ListView Height="166" HorizontalAlignment="Left" Margin="23,0,0,0" Name="lvStatus" VerticalAlignment="Top" Width="264"  >
        <ListView.View>
            <GridView>
                <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name}"></GridViewColumn>
                <GridViewColumn Header="Status" DisplayMemberBinding="{Binding Status}"></GridViewColumn>
            </GridView>
        </ListView.View>
    </ListView>
  • 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-26T23:25:37+00:00Added an answer on May 26, 2026 at 11:25 pm

    Remove the DataContext line of code.

    If you set your ItemsSource in the code behind make sure you do it before InitializeComponent is called. If not, you will need to refresh your Items collection.

    However, I would setup a View Model for your Window or Control which implements INotifyPropertyChanged. Create your collection as an ObservableCollection and bind to it in the XAML:

    <ListView ... ItemsSource={Binding Path=ServiceList}>
        <ListView.View>
            <GridView>
                <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Path=Name}" />
                <GridViewColumn Header="Status" DisplayMemberBinding="{Binding Path=Status}" />
            </GridView>
        </ListView.View>
    </ListView>
    

    Let me know if you need an example of using a View Model.

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

Sidebar

Related Questions

I am developing a WPF windows application and am getting into a trouble running
I am currently developing a WPF client application which uses Linq-to-SQL for the typed
I'm considering developing a WPF application, to be hosted by a legacy Windows app
Context: I'm developing a WPF application which will contain a lot of different screens.
I am developing a WPF application that must run using Windows Classic theme. The
I am developing an application in C# WPF which will have Client-Server architecture (Client
I'm currently developing a WPF application in C# and I want to have a
i'm developing an application (wpf) that have 3 windows. in the main window user
I have an application I'm developing which closely mirrors Windows 7's Device Stage. In
I have an application which I am developing using WPF\Prism\MVVM. All is going well

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.