In our application we are using radtab control. Instead of header I have added 2 labels. Screenshot attached.
How to get mouseover effect on these labels.
Here is the requirement.
Labels foreground should be black in normal state
on Mouse over the foreground of these label should change to white.
Mouseover effect works correctly if we dont use the labels.
But how to get the mouseover effect on these labels which are in radtabcontrol?
Note: Please send the project as vb as I cannot open c#
Below is the part of the code (only Scheduled tab) one tabitem along with labels
<!--TabControl Starts Here-->
<tkNavigation:RadTabControl x:Name="tabControl" Grid.Row="2" BackgroundVisibility="Collapsed" Style="{StaticResource StyleRadTabControl}" >
<!--Scheduled Tab Starts Here-->
<tkNavigation:RadTabItem.Header>
<StackPanel>
<msInput:Label Content="Scheduled" Margin="0" HorizontalAlignment="Center" />
<msInput:Label x:Name="lblCount" Content="( )" Margin="0" HorizontalAlignment="Center" />
</StackPanel>
</tkNavigation:RadTabItem.Header>
<Grid x:Name="grdScheduled">
---
----
</Grid>
</tkNavigation:RadTabItem>