110,896
社区成员
发帖
与我相关
我的任务
分享
private void dataGridView1_CellMouseEnter(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex > -1 && e.RowIndex > -1)
{
toolTip1.SetToolTip(dataGridView1,dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString());
}
}