Hello David,
I answered in this thread as well:
http://www.telerik.com/community/forums/thread/b311D-bgmgck.aspx
If you want, you can add the UserControls directly as items of the TabControl, you just need to bind the header of the TabItem to a property that will exist on all UserControls. If we use the example from the thread, the style needs to be slightly modified :
<nav:RadTabControl x:Name="tabControl"> |
<nav:RadTabControl.ItemContainerStyle> |
<Style TargetType="nav:RadTabItem"> |
<Setter Property="Header" |
Value="{Binding Description}" /> |
<Setter Property="Conent" |
Value="{Binding}" /> |
</Style> |
</nav:RadTabControl.ItemContainerStyle> |
</nav:RadTabControl> |
I.e. you place the UserControl (the item) as content of the TabItem, while one of its properties (Description) is bound to the header.
Hopefully this will help you in your case.
Kind regards,
Miroslav
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.