I have WinForm, which have many controls (tabcontrol, tabpage, datagridview,...etc). I want to get data in datagridview. The structure of design is like this (TabControl will have many TabPages, each TabPage will have one TabControl, each TabControl will have many TabPages, each TabPage will have one DataGridView).
TabControlX
+TabPage
++TabControl
+++TabPage
++++DataGridView
+++TabPage
++++DataGridView
+TabPage
++TabControl
+++TabPage
++++DataGridView
+++TabPage
++++DataGridView
So, I want to get data each DataGridView. I'm not sure if the stuff is correct or bad.
foreach (TabPage tbp in tabControl_X.TabPages)
{
foreach (Control item in tbp.Controls)
{
foreach (TabPage sub_tab in item.Controls)
{
foreach (Control dgv in sub_tab.Controls)
{
//how to get data dgv?
}
}
}
}
To iterate the control hierarchy of the
Form
, make an iterator method similar to this:First, demonstrate the iterator by listing ALL the controls:
An additional extension indents the output by depth see Repo.
Your question is how about getting just the
DataGridView
controls, so specifyOfType()