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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:40:37+00:00 2026-05-23T02:40:37+00:00

I have an ObservableCollection Bound to a WPF List View. I am looking to

  • 0

I have an ObservableCollection Bound to a WPF List View. I am looking to be able to sort the columns of the ListView control by clicking on the Column Header. To do this I am sorting the ObservableCollection and letting the binding take care of updating the GUI.

To sort the ObservableCollection I am using the following code:

sortedData = new ObservableCollection<Tag>( from x in data
                                            orderby x.ID descending
                                            select x );
data = sortedData;

NB: data is bound to the ListView

The problem I’m having is that for each of the columns there would be a lot of copy-paste code to achieve the desired effect. Is it possible to pass the ‘orderby x.ID descending’ portion of the LINQ statement as a function parameter?

Or is there an entirely easier way to achieve the desired result?

  • 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-23T02:40:38+00:00Added an answer on May 23, 2026 at 2:40 am

    You could use a Func as a method parameter containing a lambda expression.

    If you want to order every single type by it’s ID you could specify an interface on all of those types too and use a generic method.

    For example

    public ObservableCollection<Tag> Sort(Func<ObservableCollection<Tag>> sortFunc)  
    {  
        //do something else  
        data = sortFunc();  
        //do something else  
    }
    

    which can be called like

    Sort(list.OrderByDescending(x => x.ID));

    in which list is your ObservableCollection.

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

Sidebar

Related Questions

In WPF, I have a ListView bound to an ObservableCollection in the code-behind. I
I have a WPF ListView with several columns bound to a custom collection. The
I have a listview control that is bound to an observable collection that I
I have an instance of ObservableCollection bound to a WPF listbox with two separate
I have ObservableCollection<Foo> that is bound to an ItemsControl (basically displaying a list). Foo
I have a WPF DataGrid bound to ObservableCollection . Each item in my collection
using WPF/C#/Entity Framework. I have a DataGrid.ItemsSource bound to some ObservableCollection . Now, I
Scenario I have a TreeView that is bound to ObservableCollection<T> . The collection gets
I have a view (MainPage.xaml) which is bound to a ViewModel. In the ViewModel
I have a WPF sorting/binding issue. (Disclaimer: I am very new to WPF and

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.