Add an Icon property to allow displaying images in the RadPanelBarItem Header. Declined: Adding such property requires also adding a visual element (Image) in the Template of the RadPanelBarItems. RadTreeView also has Image in its ControlTemplate and we have to admit this was our design mistake in the past. Such element makes the Style larger, makes the virtualization harder to support, slows down the performance. How To Add Image in RadPanelBar: In non-databound scenarios just add the Image in the Header: <telerik:RadPanelBarItem> <telerik:RadPanelBarItem.Header> <StackPanel> <Image Source="MyImage.png" Margin="5"/> <TextBlock Text="{Binding Name}" /> </StackPanel> </telerik:RadPanelBarItem.Header> </telerik:RadPanelBarItem> In databound scenario set the ItemTemplate of the RadPanelBar: DataTemplate x:Key="itemTemplate"> <StackPanel> <Image Source="MyImage.png" Margin="5"/> <TextBlock Text="{Binding Name}" /> </StackPanel> </DataTemplate> <telerik:RadPanelBar ItemTemplate="{StaticResource itemTemplate}"/> See the SDK example demonstrating those approaches: https://github.com/telerik/xaml-sdk/tree/master/PanelBar/AddHeaderIcon
Now if you add a content to the panelbar the content inside will receive tab navigation only once due to the items control nature of the control. The XAML team has recently reviewed the status of this issue and won't be addressing it in future releases. In order to make the content (items) of a specific RadPanelBarItem (X) focusable with tabKey, set TabNavigation="Local" on X.
Allow resizing of PanelBarItems. http://www.telerik.com/community/forums/wpf/panelbar/resize-capabilities-to-radpanelbaritems.aspx
Add a ScrollViewer to the PanelBarItem ControlTemplate
The IsTabStop is set to false in all RadPanelBarItems and set to true in the textboxes in the Items of the PanelBarItems. When tab navigating the RadPanelBarItems get focused, in Silverlight they don`t.
Expose a property to easily control the expander indicator style and visibility. From Q1 2016 SP users will able to use the ExpanderStyle property of the RadpanelBarItem in order to style the arrow expander.
Second level items cannot be styled to look like first level items. DECLINED: SecondLevelItemsStyledLikeTopLevelItems SDK sample showing approach to styling PanelBar with more than two levels of PanelBarItems is available since R3 2016 Official Release. https://github.com/telerik/xaml-sdk/tree/master/PanelBar
Possbility to have PanelBarItems with fixed height and other PanelBarItems that take the rest of the available height equally
Update the ExpandMode property to allow zero, one or zero, one ,and multiple expanded items.
When using the new DragDrop logic in the RadPanelBar control, the MouaseOver state of a dragged item isn't cleared on drop. This is why as soon as you move the mouse over another item and start dragging it, you get two PanelBarItems in MouseOver state in the PanelBar.
PanelBar: A custom template can not be set to a PanelBarItem, using a ControlTemplate DECLINED: This issue is not reproducible with 2016 R3 official release.
RadPanelBaritem's expander arrow should not be visible when there are no subitems. XAML Team has recently reviewed the status of this item. It is considered a design limitation of the RadPanelBar control which won't be addressed in future releases. However, users will be able to use the ExpanderStyle property of the RadPaneBarItem (from Q1 2016 SP) in order to control the arrow's visibility.
Cannot dynamically change the theme of the control.
Implement IsExpandOnDblClickEnabled logic
If the RadPanelBar Orientation is Horizontal, a RadHtmlPlaceHolder cannot be displayed inside a RadPanelBarItem
PanelBarItem with no Items is initially expanded when its IsExpanded property is data bound
ExpandAll/Collapse issues, Child RadPanelbarItem is resized incorecctly