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.
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
Post a Comment