Hello
I would set focus at the same time i set visible a ContextualTabGroup. How can i do that?
Thanks
A contextualtabgroup is not a focusable element. The elements that represent the ContextualTabGroup are dynamically created by the RibbonCaptionPanel.
Thanks for your answer
Exact, i have found a solution with tabitem by adding this on the creation of the pane :
pane.GotFocus += delegate{this.mainRibbon.SelectedTab = this.PersonneTab;};
personneTab is a tabItem.
It works when a control in the pane got the focus, but it will perfect if the event is raised when i select the pane with the mouse or the keyboard.