我通过使用模板字段在 Gridview 中使用文本框。一切都运作良好。但我的问题是,每当文本框获得焦点时,我都需要那个 gridview 的 rowindex。
你能帮助我吗?提前致谢
问问题
1137 次
1 回答
1
也许这个DataGridViewCell.RowIndex 属性
private void getCurrentCellButton_Click(object sender, System.EventArgs e)
{
string msg = String.Format("Row: {0}, Column: {1}",
dataGridView1.CurrentCell.RowIndex,
dataGridView1.CurrentCell.ColumnIndex);
MessageBox.Show(msg, "Current Cell");
}
于 2013-03-16T06:36:59.067 回答