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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:59:21+00:00 2026-05-13T07:59:21+00:00

In a datagridview with rowheaders visibility set to false and allowusertoresizerow set to true,

  • 0

In a datagridview with rowheaders visibility set to false and allowusertoresizerow set to true, i need to prevent the celldoubleclick event to trigger if doubleclicked on the rowdivider (Toublearrow of the row resize is visible when the cursor is on the divider).

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-05-13T07:59:21+00:00Added an answer on May 13, 2026 at 7:59 am

    I guess the easiest way would be checking the clicked area of the grid on the CellDoubleClick event itself; the logic would be to return in case rowresizetop or rowresizebottom areas are clicked and continue processing if not. Please check an example below for more details:

    private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
    {
        // get mouse coordinates
        Point mousePoint = dataGridView1.PointToClient(Cursor.Position);
        DataGridView.HitTestInfo hitTestInfo = dataGridView1.HitTest(mousePoint.X, mousePoint.Y);
        // need to use reflection here to get access to the typeInternal field value which is declared as internal
        FieldInfo fieldInfo = hitTestInfo.GetType().GetField("typeInternal", 
            BindingFlags.Instance | BindingFlags.NonPublic);
        string value = fieldInfo.GetValue(hitTestInfo).ToString();
        if (value.Equals("RowResizeTop") || value.Equals("RowResizeBottom"))
        {
            // one of resize areas is double clicked; stop processing here      
            return;
        }
        else
        {
            // continue normal processing of the cell double click event
        }
    } 
    

    hope this helps, regards

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

Sidebar

Related Questions

I have an editable DataGridView with SelectionMode set to FullRowSelect (so the whole row
I have a DataGridView with one DataGridViewComboBoxColumn in my WinForms application. I need to
DataGridView, for example, lets you do this: DataGridView dgv = ...; DataGridViewCell cell =
DataGridView.CellContentClick is not firing if I mouse click a DataGridViewCheckBoxCell very fast. How can
My DataGridView needs to support a number of types and these types may have
With the DataGridView it is possible to display cells containing some long text. The
I populated a datagridview from a datatable. How do I read from the datagridview
I am using a DataGridView control in a Windows Forms application. When a user
In a DataGridView bound to a DataView, where cells in a column will contain
I have a datagridview where the users can select which subset of columns to

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.