Skip to main content

WPF Tab Control Navigation

 Most of time in Tab Control we want navigate one tab to another tab without clicking the tab header.

Go to next tab.




Back to the previous tab.

it's easy, in your event just use tabname.selected= true.


 private void empInformationBackButton_Click(object sender, RoutedEventArgs e)  
     {  
       tabItemPersonalInfo.IsSelected = true;  
     }  

Comments