HomeCommunityControl GalleryNavigation ControlsIE WebControlsRich Tab web control

Rich Tab web control



(4) Submit a Review

16,885 Downloads

61,059 Views


Description

A rich Tab web control which provides similar capabilities as the well known windows form tab control. The control can be used through the VS.NET designer or programmatically. You can add new tabs and then add your controls onto each tab. All formatting is controlled through CSS styles. See Readme.html file for more details.

Syntax Example

// create a new tab control to display TabControl MyTabs = new TabControl(); // set the tab properties MyTabs.ID = "HomepageTabs"; MyTabs.DefaultTab = "Articles"; MyTabs.AddTabCommands = true; // create the five tabs to show MyTabs.Tabs.Add(new TabInfo(ArticlesTabName, ArticlesTabDisplayText, ArticlesTabAltText)); MyTabs.Tabs.Add(new TabInfo(PresentationsTabName, PresentationsTabDisplayText, PresentationsTabAltText)); MyTabs.Tabs.Add(new TabInfo(SamplesTabName, SamplesTabDisplayText, SamplesTabAltText)); MyTabs.Tabs.Add(new TabInfo(BlogTabName, BlogTabDisplayText, BlogTabAltText)); MyTabs.Tabs.Add(new TabInfo(AboutTabName, AboutTabDisplayText, AboutTabAltText)); // subscribe to the create-tab event so we can add our child controls MyTabs.TabCreate += new TabCreate(CreateTabControls); // add the tab control this.Controls.Add(MyTabs);

Reviews

Submit a review

good

Reviewed by: ajax_beginner on Friday, June 26, 2009

3 Stars

good

Cannot download

Reviewed by: karenros on Wednesday, November 28, 2007

5 Stars

I cannot download this control

good

Reviewed by: Blackhunt on Tuesday, August 07, 2007

5 Stars

not good

have a look

Reviewed by: cellye on Thursday, September 22, 2005

5 Stars

i want to have a look.