How to identify the specific cell hovered over in DataGridView

天大地大妈咪最大 提交于 2019-12-01 10:13:17

问题


I have put a picture at the end of all datagridview rows to delete row when pressed. I want to change color of that picture on specific cell mouseover (Inorder to indicate it is an interactive button to the user).

However in all solutions I found full DGV mouseover is explianed. What I need: Learn how to find the specific cell hovered over during cell mouseover.


回答1:


If this is WindowsForms:

//when mouse is over cell
    private void dataGridView1_CellMouseMove(object sender, DataGridViewCellMouseEventArgs e)
    {
        if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
        {
            dataGridView1[e.ColumnIndex, e.RowIndex].Style.BackColor = Color.Black;
        }
    }
//when mouse is leaving cell
    private void dataGridView1_CellMouseLeave(object sender, DataGridViewCellEventArgs e)
    {
        if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
        {
            dataGridView1[e.ColumnIndex, e.RowIndex].Style.BackColor = Color.White;
        }
    }


来源:https://stackoverflow.com/questions/31891615/how-to-identify-the-specific-cell-hovered-over-in-datagridview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!