The TabStrip control is a container for one or more tabs in one place. Navigation through the tabs changes the content display of the currently active content area. A tab can be labeled with some text and an icon.
This example shows the usage of the TabStrip. The first tab is assigned to the TabStrip control using the createTab
method. The other tabs are assigned as tab elements using the addTab
method.
If an other Tab is clicked and its enabled it will be selected and the select
event is fired. A tab can be selected from outside using the selectedIndex
property.
If a tab is closable and the close icon is clicked the close
event is triggered. To close the tab the closeTab
method can be called in event handler.