出于好奇,是否可以基于数据网格中的行选择打开表单?我还需要表单来根据数据网格中的用户名显示信息。个人用户名包含在数据网格的行中。
最佳答案
您可以在以下事件下处理此问题
dataGridView1_CellClick
获取datagridiview的
CurrentCell
值根据您的要求检查
username
是否存在并显示相应的表格示例代码:
if (this.dataGridView1.CurrentCell != null)
{
string strusrname=dataGridView1.CurrentCell.Value.ToString();
//Here find out for the user name from the string as you get the currentcell value of the datagridview
// Raise the corresponding form as per you required
}
关于c# - 根据数据网格中的行选择打开表单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5354828/