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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:31:14+00:00 2026-05-23T22:31:14+00:00

How can you show the tooltip for datagridview when cell is selected, not from

  • 0

How can you show the tooltip for datagridview when cell is selected, not from mouseover but from using the arrow keys?

  • 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-23T22:31:15+00:00Added an answer on May 23, 2026 at 10:31 pm

    As you’ve noticed, you won’t be able to use the DataGridView’s built in tooltip. In fact, you will need to disable it so set your DataGridView’s ShowCellToolTips property to false (it’s true by default).

    You can use the DataGridView’s CellEnter event with a regular Winform ToolTip control to display tool tips as the focus changes from cell to cell regardless of whether this was done with the mouse or the arrow keys.

    private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e) {
        var cell = dataGridView1.CurrentCell;
        var cellDisplayRect = dataGridView1.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false);
        toolTip1.Show(string.Format("this is cell {0},{1}", e.ColumnIndex, e.RowIndex), 
                      dataGridView1,
                      cellDisplayRect.X + cell.Size.Width / 2,
                      cellDisplayRect.Y + cell.Size.Height / 2,
                      2000);
        dataGridView1.ShowCellToolTips = false;
    }
    

    Note that I added an offset to the location of the ToolTip based on the cell’s height and width. I did this so the ToolTip doesn’t appear directy over the cell; you might want to tweak this setting.

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

Sidebar

Related Questions

How can you show the tooltip for datagridview for every item in datagridview when
How can I programatically cause a control's tooltip to show in a Winforms app
I am looking for a control which can show me selected image detail view
How can I show tooltips while performing drag-n-drop. It seems that tooltip display during
I am using the Vtip plugin to show title values in a tooltip when
I'm using bxcarousel to show a bunch of images. Each image has a tooltip,
I am trying to show a tooltip in a mouseover event. The reason I
I'm trying to show a tooltip regardless of a buttons state, but this does
I'm using the following example to show a tooltip above a disabled button. How
How can I show a systray tooltip longer than 63 chars? NotifyIcon.Text has a

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.