109,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());
}
}