You can create a new tab by calling tabControl.TabPages.Add.
You can then add other controls to the collection TabPage Controls.
- , TabPage, , Fill.
:
var tabPage = tabControl.TabPages.Add("My Custom Tab");
var control = new MyCustomControl();
control.Dock = DockStyle.Fill;
tabPage.Controls.Add(control);