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.
Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
The text of the quick access buttons looks doubled when an Office2010 theme is applied, and the Aero mode is turned on.
Update: This could be worked around with TextRenderingHint, BUT the font will not look ok when the mode of the form/titlebar is not Aero
Completed
Last Updated: 15 Aug 2012 04:04 by ADMIN
1. Create a new project and open design time.
2. Add new RadRibbonBar instance.
3. Add some tabs and in one of the tabs add some groups.
4. Select the last added group and try to drag it. Exception will occur.
Completed
Last Updated: 01 Aug 2012 09:09 by ADMIN
The property is not serializable, thus the items are not added.
Completed
Last Updated: 17 Nov 2015 16:27 by ADMIN
The order of the tabs under the 'Edit CommandTabs' dialog is wrong after deleting all the contextual tabs.
Completed
Last Updated: 16 Oct 2015 10:23 by ADMIN
Attempt to assign two RadButtonElements in RadRibbonBar the same Name at design time results with an Exception dialog instead of the standard dialog.
Completed
Last Updated: 18 Jul 2012 03:51 by ADMIN
Setting the AutoSize property of RadRibbonBarGroup to false and resizing the group at design-time crashes VS.
Completed
Last Updated: 18 Jul 2012 03:45 by ADMIN
If you set the MaximizeBox and MinimizeBox properties to false in RadRibbonForm with AllowAero = true, the maximize and minimize buttons will still appear.
Completed
Last Updated: 12 Jul 2012 06:11 by ADMIN
When the AllowAero property of RadRibbonForm is true, the ContextualTabGroups placed on the ribbon bar do not support  HTML-like text formatting.
Completed
Last Updated: 02 Jul 2012 05:57 by ADMIN
In some cases when the ribbon is collapsed and you click on a tab item to display its content in a popup, there is an improper top offset of the content.
Completed
Last Updated: 22 Jun 2012 06:26 by Jesse Dyck
ADMIN
Created by: Stefan
Comments: 1
Category: RibbonBar
Type: Bug Report
1
To reproduce
1. Add a form with ribbon
2. Add one tab
3. Go to Code View
4. Go back to design time and add a group and a button in the group
5. Close design time and reopen it => the items are missing
Completed
Last Updated: 16 Oct 2015 11:33 by ADMIN
To reproduce:
1. set a local setting to the back color of a ribbon tab
2. run the project and change the selected tab => your setting is removed
Completed
Last Updated: 14 Jun 2012 01:58 by ADMIN
RadRibbonBarBackStageView positioning should be changed, so that the control appears 2 px lower.
Completed
Last Updated: 02 Jun 2014 16:06 by ADMIN
When the Windows taskbar is in auto-hide mode and you maximize a RadRibbonForm, you cannot hover the taskbar to bring it to the screen again.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
The Click event of the ExitButton and OptionButton is fired twice. If you subscribe to the ButtonElement of the ExitButton and OptionButton (which are RadMenuButtonItems), then you will get the click event fired just once.
Completed
Last Updated: 30 Apr 2012 08:25 by ADMIN
FIX. RadRibbonBar - the Click event of the OptionsButton is fired twice
Completed
Last Updated: 20 Oct 2014 13:52 by ADMIN
RadRibbonBarGroup consists of two FillPrimitives (in addition to the main FillPrimitive). These fills should be exposed to the user, so that s\he can tell what their colors should be.

Resolution: 
RadRibbonBarGroup consists of two FillPrimitives which are exposed: GroupFill and BodyFill. You can set their color using the following code snippet: 
radRibbonBarGroup1.BodyFill.BackColor = Color.MediumPurple;
radRibbonBarGroup1.GroupFill.BackColor = Color.MediumSeaGreen;
Completed
Last Updated: 09 Mar 2012 11:43 by ADMIN
The button that opens the BackstageView is not correctly placed when the ribbon is placed on a RadRibbonForm with aero turned on.