在tabControl1中有3个tabPage{1,2,3},每个tabPage中放了一个DataGridView(对应{1,2,3})还有一个textBox1。现在我想在textBox1中显示DataGridView中选中的内容。如果只有一个DataGridView,可以很简单的用string ls = dataGridView1.CurrentCell.Value.ToString();实现。可是现在有3个DataGridView,我怎么判断那一个DataGridView是当前的呢?请高手指教!谢谢!