I am trying to recognize when the Cursor is over the Header. I have tried the following but it seems to change cursor anywhere within the DataGridView. Thanks for any help!
Code:
private void DataGridView1_MouseHover(object sender, EventArgs e)
{
if (DataGridView1.CurrentRow.Index == 0)
{
DataGridView1.Cursor = Cursors.Hand;
}
}