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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:30:50+00:00 2026-05-23T10:30:50+00:00

I have a WPF DataGrid that is populated with data from DataSet. I have

  • 0

I have a WPF DataGrid that is populated with data from DataSet. I have CanUserSortColumns set to true.

Is it possible to retain the sorting that the user specified when the grid is refreshed? I have it retaining the item that was selected using

  object selectedItem = dgInvoiceHeads.SelectedItem;

before the refresh takes place and then placing

 dgInvoiceHeads.SelectedItem = selectedItem;

after the refresh takes place.

But I can’t seem to get it to retain the specified sort.

  • 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-23T10:30:50+00:00Added an answer on May 23, 2026 at 10:30 am

    One of my colleagues came up with this. It seems to be working correctly. The only thing is I think the column headers need to be the same in the DataGrid as they are in the DB.

    string sortHeader;
    string prevSortHeader;
    SortDescription sd;
    
    private void dgInvoiceHeads_Sorting(object sender, DataGridSortingEventArgs e) {
      sortHeader = e.Column.Header.ToString();
    
      if (sortHeader == prevSortHeader) {
        sd = new SortDescription(sortHeader, ListSortDirection.Descending);
      }
      else {
        sd = new SortDescription(sortHeader, ListSortDirection.Ascending);
      }
      prevSortHeader = sortHeader;
    }
    

    HTH

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

Sidebar

Related Questions

I have a WPF DataGrid that will be populated from a data table having
I have a wpf datagrid (.NET 4.0) that contains raw data from a database,
I have a user control that contains a WPF toolkit DataGrid . This control
I have a working WPF dialog that uses DataGrid. The DataGrid is set to
I have WPF DataGrid (VS2010 C#). I copied the data from DataGrid to Clipboard
I have list of maybe 50,000 entries that are populated in datagrid in wpf.
I have a WPF Datagrid populated using a Dataset. I am trying to change
I have a WPF DataGrid which is populated from a database. There is a
I have a WPF user control that contains a DataGrid. This DG contains several
I have a WPF DataGrid templatecolumn that has a DataTemplate for an AutoCompleteBox from

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.