DashboardControl.SetSelectedTabPage(String, Int32) Method
In This Article
Selects the page specified by its parent container name and by the index in the page collection.
Namespace: DevExpress.DashboardWpf
Assembly: DevExpress.Dashboard.v24.2.Wpf.dll
NuGet Package: DevExpress.Wpf.Dashboard
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
tab |
String | A String that is the Tab |
index | Int32 | An integer that is the page index in the Tab |
#Example
The following code selects the last page in a tab container and displays its component name and index in the TabContainerDashboardItem.TabPages collection.
TabContainerDashboardItem tabContainer = dashboardControl.Dashboard.Items.
FirstOrDefault(item => item is TabContainerDashboardItem) as TabContainerDashboardItem;
if (tabContainer != null)
dashboardControl.SetSelectedTabPage(tabContainer.ComponentName, tabContainer.TabPages.Count-1);
string pageComponentName = dashboardControl.GetSelectedTabPage(tabContainer.ComponentName);
int pageIndex = dashboardControl.GetSelectedTabPageIndex(tabContainer.ComponentName);
MessageBox.Show(string.Format("Page {0} with index {1} is selected.", pageComponentName, pageIndex));
See Also