DXTabControl.SelectedTabItem Property
Gets or sets the selected tab item. This is a dependency property.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
DXTab |
A DXTab |
#Remarks
Use the SelectedTabItem property to select a tab item. You can also use the DXTabControl.SelectedIndex property to select the required tab item by its index within the Items collection. To obtain whether a tab item is selected, use its DXTabItem.IsSelected property.
The tab control allows you to hide individual tab items. Using the DXTabControl.SelectedIndex or SelectedTabItem properties to select a hidden tab item does nothing. In this instance, use the DXTabControl.ShowTabItem method.
Setting the SelectedTabItem property to a new value fires the DXTabControl.SelectionChanging event. This event is raised before a tab item is selected, allowing you to cancel the action. After the item has been selected, the DXTabControl.SelectionChanged event is fired.