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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:58:06+00:00 2026-05-23T13:58:06+00:00

Is it possible, out of the box, to sort a .NET DataGridView column using

  • 0

Is it possible, out of the box, to sort a .NET DataGridView column using only the keyboard?

I understand there is a SelectionMode property, but changing this merely allows me to select, using Shift+Space, an entire row or column, but this doesn’t have the same effect as clicking the header with the mouse and causing a sort.

The reason I ask is because I am working on accessibility issues and would like to avoid relying on the mouse.

Thanks for any assistance.

  • 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-23T13:58:06+00:00Added an answer on May 23, 2026 at 1:58 pm

    The first thing you will need to do is set the KeyPreview property to True in your form properties.

    Then in the events you need to add an event handler for the KeyDown() event

    Then add some code something like this:

    public class Form1{
    this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
    
    private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            //sort column 0 descending on a 'D' press
            if (e.KeyCode == Keys.D)
                dataGridView1.Sort(dataGridView1.Columns[0], ListSortDirection.Descending);
    
            //sort column 0 Ascending on a 'U' press
            if (e.KeyCode == Keys.U)
                dataGridView1.Sort(dataGridView1.Columns[0], ListSortDirection.Ascending);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to use code only with Entity Framework in an out-of-the box
It seems impossible to (de-)serialize a generic dictionary using Json.NET out of the box.
Is it possible to find out what property is changing while handling the CurrentItemChange
is it possible to find out the page size of a processor using C
Out of the box, there doesn't appear to be any built-in support for allowing
It appears out of the box the v1 of Microsoft Sync Framework would only
Possible Duplicate: Getting jQueryUi Autocomplete to work with jQueryMobile Is there a out of
Is this possible out of the box with Rails? or is an add-on or
Is it possible to find out who called a stored procedure? For example, say
Is it possible to log out user from a web site if he is

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.