I am developing a windows form application in C# which has a tab control with dynamically created tab pages. I want to add same layout and controls (ComboBoxes, TextBoxes, Buttons & DataGridView) from ComboSet Item 1
to a newly created tab page (ComboSet Item 2
in this case). How can I do that and how to name the controls?
New tabs will be generated from 1,2,3... n
. So 'n' number of DataGridViews will be also added under the new tabs. Is there a way to bind these DataGridViews and is it possible to do so?
Any help will be very much appreciated!