Hi,
I have a little problem. I put RadPanel in application based on Visual Studio theme with the following code.
<StackPanel x:Name="NavigationStackPanel">
<telerik:RadPanelBar
x:Name="NavigationPanel"
AutoScrollToSelectedItem="True"
BringIntoViewMode="HeaderAndItems"
ExpandMode="Multiple" SelectionMode="Single"
ItemsSource="{Binding Path=ApplicationNodes}"
ItemTemplate="{StaticResource PanelBarHeaderTemplate}"
SelectionChanged="NavigationPanel_SelectionChanged"
BorderThickness="0"
ScrollViewer.HorizontalScrollBarVisibility="Visible"
ScrollViewer.VerticalScrollBarVisibility="Visible" />
</StackPanel>
Unfortunately, scroll does not work properly as you can see on the screenshots. Any ideas how I can fix it?