Declined
Last Updated: 26 Aug 2016 09:18 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: PanelBar
Type: Feature Request
24
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

Completed
Last Updated: 30 Nov 2021 21:13 by ADMIN
Release R1 2022
ADMIN
Created by: Telerik Admin
Comments: 5
Category: PanelBar
Type: Feature Request
15
Allow resizing of PanelBarItems. http://www.telerik.com/community/forums/wpf/panelbar/resize-capabilities-to-radpanelbaritems.aspx
Completed
Last Updated: 05 Jan 2022 13:16 by ADMIN
Release R1 2022
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
13
Add a ScrollViewer to the PanelBarItem ControlTemplate
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
8

			
Completed
Last Updated: 01 Feb 2016 08:46 by ADMIN
ADMIN
Created by: Tina Stancheva
Comments: 0
Category: PanelBar
Type: Feature Request
6
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.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
5
Possbility to have PanelBarItems with fixed height and other PanelBarItems that take the rest of the available height equally
Completed
Last Updated: 01 Sep 2021 11:06 by ADMIN
Release R3 2021
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
4

			
Declined
Last Updated: 19 Sep 2016 07:25 by ADMIN
Make expand animation to be horizontal when Orientation is Horizontal.

DECLINED: Cannot reproduce with R3 2016 binaries.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
2
ICommandSource for RadPanelBarItem, using the same principle like RadMenuItem, since RadPanelBar is mostly used as a menu.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: PanelBar
Type: Feature Request
1
Current behavior:

http://admin.telerik.com/Images/editor/Silverlight/PanelBar/31-08-10/current_outcome.png

Expected behavior:

http://admin.telerik.com/Images/editor/Silverlight/PanelBar/31-08-10/desired_outcome.png
Declined
Last Updated: 07 Oct 2016 10:59 by ADMIN
Items to automatically adjust position when PanelBar has no scrollbar. See attached project.

DECLINED: AdjustPositionOfPanelBarItemsNoScrollBar SDK sample demonstrates an approach to customizing the RadPanelBarItems to include a ScrollBar when the RadPanelBar's vertical ScrollBar is Disabled.
https://github.com/telerik/xaml-sdk/tree/master/PanelBar/AdjustPositionOfPanelBarItemsNoScrollBar
Unplanned
Last Updated: 25 Aug 2023 10:23 by Martin Ivanov
Currently, vertical scrolling with the mouse wheel doesn't work when the mouse is over the child RadPanelBarItems and no scrollbars are displayed for the child items (IsScrollViewerInsideItemsEnabled=False). This happens because they are hosted in a ScrollViewer which handles the MouseWheel event. Make it possible for the mouse wheel to propagate to the parent ScrollViewer.