Completed
Last Updated: 06 Jun 2017 06:55 by ADMIN
You have a scenario where there is a maximized MDI child form in a RadRibbonForm. You try to close the maximized child form from the MDI box of RadRibbonBar, but instead of getting the form closed, you programmatically hide it, so that you can reuse it further. The moment you try to show that form again, it appears non-maximized which is not a correct behavior.
Completed
Last Updated: 01 Apr 2013 03:40 by ADMIN
1. Create a new project with RadRibbonBar. 2. Set the ApplicationMenuStyle to BackstageView 3. Change the application theme to Office2010Blue when handling Form.Load event. 4. Run the project.
Completed
Last Updated: 15 Feb 2014 11:02 by Jesse Dyck
The Click event is fired for another element instead for the element where the MouseDown event is fired in RadRibbonBar.
Completed
Last Updated: 04 Mar 2013 01:06 by ADMIN
To reproroduce:
- open the smart tag and uncheck the ShowBorder check box.
- save, close and reopen the form

WORKAROUND: set the property in code
radRibbonBarButtonGroup1.ShowBorder = false;
Completed
Last Updated: 26 Feb 2013 02:18 by ADMIN
To reproduce:
- allow selection by setting ItemSelection = true
- set the SelectedItem to some of the elements
- set the SelectedItem to null -> the item remains selected
Completed
Last Updated: 20 Oct 2014 11:51 by ADMIN
To reproduce:
  Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        For index = 1 To 10
            Dim Temp As New RadButtonElement
            Temp.Image = Image.FromFile("C:\Program Files (x86)\Telerik\RadControls for WinForms Q3 2012\Examples\QuickStart\Resources\1RibbonMenuNewMagenta.png")
            Temp.TextImageRelation = TextImageRelation.ImageAboveText
            Temp.ImageAlignment = ContentAlignment.MiddleCenter
            Temp.Text = "Test"
            RadRibbonBarGroup1.Items.Add(Temp)
        Next

        'workaround
        'RadRibbonBar1.RibbonBarElement.ElementTree.ApplyThemeToElement(RadRibbonBar1.RibbonBarElement)
    End Sub
Completed
Last Updated: 30 Jan 2013 04:35 by ADMIN
1. Create a new project with RadRibbonForm.
2. Set the ApplicationMenuStyle to BackstageView.
3. Add two buttons inside the backstage view. The first one should change the theme to Windows 7 and the second one to TelerikMetro.
4. Run the project and observe how application button position changes when changing the theme.
Completed
Last Updated: 17 Jan 2013 02:25 by ADMIN
If one sets any of the Office 2010 themes to a ribbon bar with radio buttons and runs the project the radio buttons would not work.
Completed
Last Updated: 15 Jan 2013 03:45 by ADMIN
1. Create a new application with RadRibbonForm.
2. Set the ApplicationThemeName to TelerikMetro.
3. Run the application. You will see that the quick access toolbar is visible and there are not items in it.
Completed
Last Updated: 15 Jan 2013 03:40 by ADMIN
1. Create a new RadRibbonForm and add some tabs.
2. Set the backstage view mode.
2. Run the application. The application icon will not be visible.
Completed
Last Updated: 04 Jan 2013 04:04 by ADMIN
If you add a maximized child form with ControlBox = false or FormBorderStyle = None, the MDI control box of the RadRibbonBar in the MDIParent should not be visible.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Currently the Keytips in the Ribbonbar and cannot process some chars like "Ä", "Ü", "Ö" and "ß".
Declined
Last Updated: 17 Jun 2015 10:37 by ADMIN
ADMIN
Created by: Boryana
Comments: 1
Category: RibbonBar
Type: Bug Report
4
Using VS2012 RadRibbonForm's caption element is misplaced. As a result a horizontal black line appears below the title. Additionally, the system borders of the form are thinner that they are supposed to be.

Completed
Last Updated: 20 Nov 2012 04:08 by ADMIN
According to the design guidelines, the width of a ContextualTab is determined by the sum of the widths of the RibbonTabs. However, there are cases where the width of the containing tabs is less than the width needed by the ContextualTab to display its text. To handle this case, we should allow the users to set the width of the ContextualTabs.

WORKAROUND: increase the size of the inner tabs:
 private void radButton1_Click(object sender, EventArgs e)
        {
            ribbonTab1.MinSize = new Size(ribbonTab1.Size.Width+60, 0);
            radRibbonBar1.RibbonBarElement.InvalidateMeasure(true);
            radRibbonBar1.RibbonBarElement.UpdateLayout();
            radRibbonBar1.RibbonBarElement.RibbonCaption.CaptionLayout.InvalidateMeasure(true);
            radRibbonBar1.RibbonBarElement.RibbonCaption.CaptionLayout.UpdateLayout();
        }
Completed
Last Updated: 19 Oct 2012 10:12 by ADMIN
Add a RadRibbonForm, set AllowAero = false, save and close the form. Open it again and an exception will be thrown.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
add additional minimize options:
    - minimize to panel titles
    - minimize to panel buttons
Completed
Last Updated: 15 Dec 2015 14:11 by ADMIN
To Reproduce:
            this.AllowAero = false;
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.MinimizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.MaximizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
Completed
Last Updated: 26 Oct 2015 16:53 by ADMIN
Work around: 
 void radRibbonBar1_CommandTabSelecting(object sender, Telerik.WinControls.UI.CommandTabSelectingEventArgs args)
        {
            if (args.NewCommandTab.Visibility == Telerik.WinControls.ElementVisibility.Collapsed || args.NewCommandTab.Visibility == Telerik.WinControls.ElementVisibility.Hidden)
            {
                args.Cancel = true;
            }
        }
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
2
It will be nice if RadRibbonBar has the QuickAccessToolbar property exposed in the property grid of Visual Studio, just like ExpandButton, ExitButton, etc.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
The keytips not activating after splash form is closed and alt key is pressed. For the keytips of RadRibbonBar to break, the splash form (or any other form that appears before the form containing RadRibbonBar) should contain a RadControl. The workaround is to unregister the shortcuts that the RadControl in the splash form has. For example: ChordMessageFilter.UnregisterChordsConsumer(this.radTitleBar1.Behavior.Shortcuts); This line assumes that there is a RadTitleBar on the splash form.