How to: Add a Control to a Tab Page
You can use the Windows Forms TabControl to display other controls in an organized fashion. The following procedure shows how to add a button to the first tab. For information about adding an icon to the label part of a tab page, see How to: Change the Appearance of the Windows Forms TabControl.
To add a control programmatically
Use the Add method of the collection returned by the Controls property of TabPage:
tabPage1->Controls->Add(gcnew Button);
tabPage1.Controls.Add(new Button());
tabPage1.Controls.Add(New Button())
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET Desktop feedback