Hello Srinivasa,
If you want to have images, icons or other content in the RadTabItem header then you have to set the
Header property:
1. In a simple scenario with RadTabItem you can set the header as follows :
<telerik:RadTabControl>
<telerik:RadTabItem >
<telerik:RadTabItem.Header>
<StackPanel Orientation="Horizontal">
<Image Source="/Examples/Common/Images/TabControl/Report/Financial.png"
Height="16" Width="16" />
<TextBlock Text="Financial Report" Margin="3,0,0,0" />
</StackPanel>
</telerik:RadTabItem.Header>
</telerik:RadTabItem>
</telerik:RadTabControl>
2.If you use more complex scenario with DataBinding:
http://demos.telerik.com/silverlight/default.aspx#TabControl/HeaderContent
I hope this answers your question.
Best wishes,
Boryana
the Telerik team