On the PanelBar, I do not see a Property for Expand Mode = "single" or something to the like of.
How do i get the behavior of just having one Panel open at a time?
Isn't this property: 'Expand Mode' usually associated with the Panel Bar behavior?
<telerikNavigation:PanelBarPanel x:Name="ExperienceBar"
VerticalAlignment="Stretch" Width="250" Canvas.Left="20" Canvas.Top="40">
<telerikNavigation:RadPanelBarItem Expanded="RadPanelBarItem_Expanded" >
<telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="Residents"></TextBlock>
</telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="Content Test" />
</telerikNavigation:RadPanelBarItem>
<telerikNavigation:RadPanelBarItem IsExpanded="True">
<telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="Artists"></TextBlock>
</telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="Content 2 Test" />
</telerikNavigation:RadPanelBarItem>
<telerikNavigation:RadPanelBarItem>
<telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="something"></TextBlock>
</telerikNavigation:RadPanelBarItem.Header>
<TextBlock Text="Content 3 Test" />
</telerikNavigation:RadPanelBarItem>
thanks,
John