Page Stats
Visitor: 448
The TabControl control allows you to create tabbed windows that you can see in many applications. ImageList Contains a list of images that will be displayed for each tab. Multiline Allows you to create multiple rows of tabs.
private void button1_Click(object sender, EventArgs e)
{
int i = 1;
TabPage tp = new TabPage("Test"+i);
tabControl1.TabPages.Add(tp);
//TextBox tb = new TextBox();
//tb.Dock = DockStyle.Fill;
//tb.Multiline = true;
// tp.Controls.Add(tp);
}