I have a Docking manager with Four ContentControl inside
3 are docked on the left side as a tabbed serie, and one is the Documents container.
I need to be able to select and made active bringing into view one of the three ContentControls on the side from code.
I've Tried both:
DockingManager.SetIsSelectedTab(myContentControl, true);
myContentControl.BringIntoView();
But it seems not the correct thing to do or I'm calling it wrong and the Tabbed content control remains unselected and behind another control.
What am I doing wrong??
thank you in advance
Sabrina