views:

103

answers:

1

Hi,

I want to create tabpage as userControl.

Is there any way to deal with this??

+1  A: 

Add a TabPage, and add a UserControl to it...

TabPage tp = tabControl1.TabPages.Add("New tab");
tp.Controls.Add(new MyUserControl());
Thomas Levesque
simplicity is the best :)