How to open a tab of WPF tab control on button click ?
Open a tab o button click WPF. Anonymous User 2081 19 Jul 2013 How to open a tab of WPF tab control on button click?
Write the below line of code in button click event:-
tabControlName.SelectedIndex=0; // 0 (zero) use for the 0 (zeroth index of tab control).