I am trying to create a menu with some items say Home, Products, Services, Contact Us and I dont want regular style rather I want a different background image for each of these items with a set margin between each of them.
I can apply the style using a resource to the items in drop down but can not set the style for first level of items mentioned above.
I already tried using the static resource "HomeMenuStyle1" but its not working. Code is attached below for reference.
In case anyone of you have any clue. Please suggest the possible workaround for same.
Thanks,
Wizkid
<telerik:RadMenu VerticalAlignment="Top" x:Name="globalMenu" HorizontalAlignment="Left" ClickToOpen="False" Width="Auto" >
<telerik:RadMenuItem x:Name="radItemHome" Header="Home" Style="{StaticResource HomeMenuStyle1}" Width="90" Height="60" BorderBrush="White" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Center" >
</telerik:RadMenuItem>
<telerik:RadMenuItem x:Name="radItemProducts" Header="Tools" Width="90" Height="60" BorderBrush="White" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Center" >
</telerik:RadMenuItem>
<telerik:RadMenuItem x:Name="radItemServices" Header="Cases" Width="90" Height="60" BorderBrush="White" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" BorderThickness="2" HorizontalAlignment="Center" VerticalAlignment="Center" >
</telerik:RadMenuItem>
</telerik:RadMenu>