Hi,
I want to create tabpage as userControl.
Is there any way to deal with this??
Hi,
I want to create tabpage as userControl.
Is there any way to deal with this??
Add a TabPage, and add a UserControl to it...
TabPage tp = tabControl1.TabPages.Add("New tab");
tp.Controls.Add(new MyUserControl());