Hi Boyan,
Thanks for the reply. Unless I missed it, it did not work for me. Below is the code I'm just playing with:
<telerikNavigation:RadToolBarTray x:Name="mainMenuTray" Grid.Row="1">
<telerikNavigation:RadToolBarTray.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF282929" />
<GradientStop Color="#FF55565b" Offset="1" />
</LinearGradientBrush>
</telerikNavigation:RadToolBarTray.Background>
<telerikNavigation:RadToolBar x:Name="toolbarMenu" Band="0" BandIndex="0">
<telerikNavigation:RadMenu VerticalAlignment="Top" HorizontalAlignment="Left"
x:Name="mainMenu" ClickToOpen="True">
<telerikNavigation:RadMenuItem x:Name="MenuFile" Header="File">
<telerikNavigation:RadMenuItem x:Name="mnuCompanyAdd" Header="Add" Click="mnuCompanyAdd_Click">
<telerikNavigation:RadMenuItem.Icon>
<Image Source="/Images/CompanyAdd16.png" />
</telerikNavigation:RadMenuItem.Icon>
</telerikNavigation:RadMenuItem>
<telerikNavigation:RadSeparator />
<telerikNavigation:RadMenuItem x:Name="mnuCompanyUpdate" Header="Update" Click="mnuCompanyUpdate_Click">
<telerikNavigation:RadMenuItem.Icon>
<Image Source="/Images/CompanyUpdate16.png" />
</telerikNavigation:RadMenuItem.Icon>
</telerikNavigation:RadMenuItem>
<telerikNavigation:RadSeparator />
<telerikNavigation:RadMenuItem x:Name="mnuCompanyDelete" Header="Delete" Click="mnuCompanyDelete_Click">
<telerikNavigation:RadMenuItem.Icon>
<Image Source="/Images/CompanyDelete16.png" />
</telerikNavigation:RadMenuItem.Icon>
</telerikNavigation:RadMenuItem>
<telerikNavigation:RadSeparator />
<telerikNavigation:RadMenuItem x:Name="mnuCompanyClose" Header="Close" Click="mnuCompanyClose_Click">
<telerikNavigation:RadMenuItem.Icon>
<Image Source="/Images/Close16.png" />
</telerikNavigation:RadMenuItem.Icon>
</telerikNavigation:RadMenuItem>
</telerikNavigation:RadMenuItem>
</telerikNavigation:RadMenu>
</telerikNavigation:RadToolBar>
</telerikNavigation:RadToolBarTray>
<telerikNavigation:RadToolBarTray x:Name="mainToolbarTray" Grid.Row="2" >
<telerikNavigation:RadToolBarTray.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF282929" />
<GradientStop Color="#FF55565b" Offset="1" />
</LinearGradientBrush>
</telerikNavigation:RadToolBarTray.Background>
<telerikNavigation:RadToolBar x:Name="toolbarDocument" Band="0" BandIndex="1">
<Button Click="btnCompanyAdd_Click" Tag="CompanyAdd" x:Name="btnCompanyAdd"
ToolTipService.ToolTip="Create a new company">
<StackPanel Orientation="Horizontal">
<Image HorizontalAlignment="Center" VerticalAlignment="Center"
Source="/Images/CompanyAdd16.png" />
<TextBlock Text="Add" />
</StackPanel>
</Button>
<Button Click="btnCompanyUpdate_Click" Tag="CompanyUpdate" x:Name="btnCompanyUpdate"
ToolTipService.ToolTip="Update an existing company">
<StackPanel Orientation="Horizontal">
<Image HorizontalAlignment="Center" VerticalAlignment="Center"
Source="/Images/CompanyUpdate16.png" />
<TextBlock Text="Update" />
</StackPanel>
</Button>
<Button Click="btnCompanyDelete_Click" Tag="CompanyDelete" x:Name="btnCompanyDelete"
ToolTipService.ToolTip="Delete an existing company">
<StackPanel Orientation="Horizontal">
<Image HorizontalAlignment="Center" VerticalAlignment="Center"
Source="/Images/CompanyDelete16.png" />
<TextBlock Text="Delete" />
</StackPanel>
</Button>
</telerikNavigation:RadToolBar>
</telerikNavigation:RadToolBarTray>
I've uploaded a snapshot for your convenience -
http://www.mansfieldart.com/snapprob1.jpg
Any ideas? Have I missed what you suggested or something else?
Thanks.
T.