Completed
Last Updated: 20 Jul 2021 09:42 by ADMIN
Output error in VS:

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadRibbonView', AncestorLevel='1''. BindingExpression:Path=IsHostedInRibbonWindow; DataItem=null; target element is 'WindowTitle' (Name='WindowTitle'); target property is 'NoTarget' (type 'Object')
Completed
Last Updated: 17 Nov 2016 13:28 by ADMIN
The KeyboardNavigation throws null reference exception when you try to move through the DropDownButton of the QAT and we does not have the button in the style targeting the QAT.


Available in LIB version: 2016.3.1121
Completed
Last Updated: 02 Nov 2018 15:37 by ADMIN
Workaround for this bug is setting Style.Triggers for this scenario.

<Style BasedOn="{StaticResource RadRibbonSplitButtonStyle}" TargetType="telerik:RadRibbonSplitButton">
  <Style.Triggers>
    <MultiTrigger>
      <MultiTrigger.Conditions>
        <Condition Property="IsChecked" Value="True"/>
        <Condition Property="IsEnabled" Value="True"/>
        <Condition Property="CurrentSize" Value="Medium"/>
      </MultiTrigger.Conditions>
      <MultiTrigger.Setters>
        <Setter Property="Foreground" Value="{DynamicResource CheckedBrush}"/>
      </MultiTrigger.Setters>
    </MultiTrigger>
  </Style.Triggers>
</Style>
Completed
Last Updated: 30 Sep 2016 06:52 by ADMIN
Completed
Last Updated: 24 Jan 2020 13:57 by ADMIN
Release LIB 2020.1.127
Workaround:
In the Loaded event of the RibbonWindow, use the Telerik.Windows.Controls.RibbonView.Shell.WindowChrome class to get the current window and set its ResizeBorderThickness property to 0. 

public MainWindow()
{
    InitializeComponent();
    this.Loaded += MainWindow_Loaded;
}
 
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    Telerik.Windows.Controls.RibbonView.Shell.WindowChrome chome = Telerik.Windows.Controls.RibbonView.Shell.WindowChrome.GetWindowChrome(this);
    chome.ResizeBorderThickness = new Thickness(0);
}
Completed
Last Updated: 09 Sep 2016 07:35 by ADMIN
The workaround is setting in the ControlTemplate of the RadRibbonSplitButton in Button x:Name="ButtonPart" setter for a custom style  or Style="{TemplateBinding ButtonPartStyle}" and adding a ButtonPartStyle in the setters of the RadRibbonSplitButton to point to the default RadButtonStyle.


Available in R3 2016 Release
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: RibbonView
Type: Bug Report
1

Available in LIB version: 2016.2.725
Completed
Last Updated: 08 Sep 2022 09:57 by ADMIN
Release R3 2022
This is reproducible only if the application that holds RadRibbonView is started on another machine and you are connected to it through Remote Desktop Connection. When the keytips are enabled and you click in the main machine, then click inside the remote desktop window, the keytips are displayed.
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: RibbonView
Type: Bug Report
1
This exception reproduces only if the keytips are enabled and the ribbonview is set as a Content of RadPane (or RadTabItem) that is not selected, and also the MinimizeButtonVisibility property is set to Visible.

The error will occur also if the HelpButtonVisibility is set to Visible.

As a workaround you can set the MinimizeButtonVisibility to Collapsed. Then subscribe for the SelectionChanged event of the pane group and in its handler set the visibility to Visible only when the corresponding pane is selected.



Available in LIB version: 2016.2.725
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
The ApplicationMenu is not closed when a button's keytip is activated. 


Available in LIB version: 2016.2.725
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
After you re-select a (RadRibbon)DropDownButton  (wrapped in RadRibbonGallery expand content), the button disappears together with any other content of the RadRibbonGallery.

Possible workaround could be handling DropDownClosed event of the DropDownButton and setting e.Handled = True.


Available in LIB version: 2016.2.725
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
RadRibbonDropDown is not closed when RadListBoxItem is selected with keyboard navigation(when enter is pressed)


Available in LIB version: 2016.2.725
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN

Available in LIB version: 2016.2.725
Completed
Last Updated: 28 Jan 2016 09:34 by ADMIN
Application title disappears when you change the current theme to Expression_Dark or Windows8.

As a workaround: You can set the RadRibbonWindow.IsWindowsThemeEnabled static property to False in order to apply the Telerik predefined themes instead of using the Windows OS theme. 

Available in LIB version: 2016.1.21
Completed
Last Updated: 10 May 2016 11:31 by ADMIN
Available in LIB version: 2016.2.516
Completed
Last Updated: 25 Jul 2016 06:55 by ADMIN
The KeyTips of the RadRibbonView are drawn incorrectly with FlowDirection set to RighToLeft 

Available in LIB version: 2016.2.725
Completed
Last Updated: 08 Jan 2016 12:08 by ADMIN
Items in RadCollapsible are not rendered correctly on Windows7 with DPI 150% and UseLayoutRounding set to true and ItemSpacing is set to more than 0.

Available in LIB version: 2015.3.1215
Completed
Last Updated: 27 Jan 2016 14:50 by ADMIN
Black bar apears on Windows10 machine when in Maximized state and the RadRibbonView has set Visibility="Collapsed".

Available in LIB version: 2016.1.21
Completed
Last Updated: 14 May 2016 06:30 by ADMIN