Completed
Last Updated: 22 May 2023 10:42 by ADMIN
Release LIB 2023.1.522 (22 May 2023)

Most controls that show a drop down capture the mouse to cancel the scrolling of any parent ScrollViewers while the drop down is opened. The ToolBar overflow items drop down doesn't prevent the scrolling in parent ScrollViewers (a ScrollViewer that wraps the content where the ToolBar is defined). In that case if the user scrolls the ScrollViewer while the overflow items are opened, the ToolBar control moves according to the new position, but the popup stays open at its original position.

The common behavior here is to prevent scrolling while the drop down is opened. 

To work this around, you can subscribe to the MouseWheel event of RadToolBar and handle it in case the IsOverflowOpen property is True.

private void ToolBar_MouseWheel(object sender, MouseWheelEventArgs e)
        {
            var toolBar = (RadToolBar)sender;
            if (toolBar.IsOverflowOpen)
            {
                e.Handled = true;
            }
        }

Completed
Last Updated: 03 Aug 2020 08:55 by ADMIN
The RadToolBar.ItemAlignment attached property is not respected when it is set to element inside DataTemplate.
Completed
Last Updated: 12 Feb 2019 08:29 by ADMIN

When the RadToolBar is collapsed through the OverFlow Popup, the popup remains open. 

As a workaround the popup can be closed when the RadToolBar's Visibility is collapsed:

var button = sender as RadRibbonButton;
var popup = button.ParentOfType<Popup>();
popup.IsOpen = false; 

Completed
Last Updated: 17 Sep 2018 11:23 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 1
Category: ToolBar
Type: Bug Report
0
The button focus visual should not be displayed when you click on another button in the UI. Currently, because the toolbar has its own focus scope, it is possible to have the focus on the button and also on another UI element. This means that the button will have its focus visual shown.

To work this around you can extract the Template of the RadButtonStyle from the Telerik.Windows.Themes.Fluent.xaml file and remove the General IsFoucused setters (MultiTrigger). Then you can apply the style using the style selector of the toolbar. For your convenience I prepared a small example showing this approach. I hope that helps.

https://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-editing-control-templates

https://docs.telerik.com/devtools/wpf/controls/radtoolbar/styling-and-appearance/style-selector
Completed
Last Updated: 21 May 2021 11:57 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The RadToolBar.OverflowMode attached property is not respected when set on an element in the ItemTemplate of RadToolBar.
Completed
Last Updated: 19 May 2016 13:58 by ADMIN
Once the Windows8Touch theme is selected changing the theme to anyone else makes the Toolbar in the selected theme to look large like in Windows8Touch theme
Completed
Last Updated: 04 Jan 2017 12:54 by ADMIN
Setting ToolBar.Background to Transparent should make the control transparent
Completed
Last Updated: 28 Oct 2014 07:24 by Peter Hedley
ADMIN
Created by: Telerik Admin
Comments: 7
Category: ToolBar
Type: Bug Report
49
Allow buttons to be right aligned in the toolbar

Available in Q3 2014.