This question is locked. New answers and comments are not allowed.
I have set the Image in tab header In RadTab . Not I want to change the Image of selected tab.
I need your help to sort out this issue.
Following is my code
Thanks
I need your help to sort out this issue.
Following is my code
<telerik:RadTabControl x:Name="ProductEditTabControl" Grid.Row="0" Style="{StaticResource StyleRadTabControl}" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" SelectionChanged="ProductEditTab_SelectionChanged" > <!-- GENERAL --> <telerik:RadTabItem Name="GeneralTab" Style="{StaticResource TabItemStyle}"> <telerik:RadTabItem.HeaderTemplate > <DataTemplate> <StackPanel> <StackPanel Name="GeneralStk"> <Image Name="GeneralLogo" Height="75" Width="80" Source="/CROSS.Administration;component/Assets/general_normal_gray.png" VerticalAlignment="Center" Cursor="Hand" /> </StackPanel> </StackPanel> </DataTemplate> </telerik:RadTabItem.HeaderTemplate> <productViews:ProductEditGeneralCtrl /> </telerik:RadTabItem> <!-- MATERIALS --> <telerik:RadTabItem x:Name="MaterialsTab" Style="{StaticResource TabItemStyle}"> <telerik:RadTabItem.HeaderTemplate> <DataTemplate> <StackPanel> <StackPanel> <Image x:Name="MaterialsLogo" Height="75" Width="80" Source="/CROSS.Administration;component/Assets/materials_normal_gray.png" VerticalAlignment="Center" Cursor="Hand" /> </StackPanel> </StackPanel> </DataTemplate> </telerik:RadTabItem.HeaderTemplate> <productViews:ProductEditMaterialCtrl /> </telerik:RadTabItem>
</telerik:RadTabControl>
Thanks