我在 TabControl1 中有一个 TabControl2。TabControl2 在 TabControl1 的所有 TabPages 中。在 TabControl2 的 TabPage 中是 DataGridView,我需要使用这个 DataGridView(Add.Rows 等)。全部以编程方式添加。
我正在寻找找到正确 DataGridView 的最佳方法,所以我需要类似的东西:
DataGridView xxx = TabControl2.SelectedTab.Controls.Find("data_grid_view_name", false).FirstOrDefault() as DataGridView ***in TabControl1.SelectedTab***
Find this DataGridView by more :
Foreach (var y in TabControl1.Controls.OfType<Tabpage>())
{
//looks like a dirty code for me
}