I want to disable clicking and going from one tabPanel to another. Like here http://www.eldan.co.il/en/ the user can't select another step. I tried something like this
if (Tabs.ActiveTabIndex == 0)
{
Tabs.Tabs[1].Enabled = false;
}
but it hides the tab...
Tabsis the TabContainerTabs.Tabs[1].Enabled = falseshould disable the second TabPanel. To hide a TabPanel you would use theVisibleproperty. – Tim Schmelter Jul 31 '11 at 10:54