Completed
Last Updated: 03 Jun 2019 04:41 by ADMIN
Release R2 2019 SP1

When the size is reduced the button's text is hidden and the popup occurs. One should be able to directly go to the collapsed mode without showing buttons with no text. 

The attached project shows a temporary solution. 

Unplanned
Last Updated: 20 May 2019 10:48 by ADMIN
It would be good to have any indication that there are more button items in the backstage view. Currently, RadRibbonBar neither shows scrollbars, no overflow button
Completed
Last Updated: 01 Jul 2019 14:56 by ADMIN
Release R3 2019 (LIB 2019.2.708)
Maximizing the form cuts off the RadRibbonBar and decreases the content padding.
Completed
Last Updated: 15 Jul 2019 10:42 by ADMIN
Release R3 2019 (LIB 2019.2.722)
Created by: GLENN
Comments: 1
Category: RibbonBar
Type: Bug Report
1
Create a RadRibbonForm.
Set the ThemeName to Office2013Light.
There is a double blue border on the left and right of RadRibbonBar.
Completed
Last Updated: 22 Jul 2019 13:28 by ADMIN
Release R3 2019 (LIB 2019.2.729)
Create a RadRibbonForm.
Set the ApplicationMenuStyle of RibbonBar to BackstageView
Run the form and maximize it.
Open BackstageView and you will see that part of the form is drawn outside of the screen.
Completed
Last Updated: 22 Jul 2019 13:17 by ADMIN
Release R3 2019 (LIB 2019.2.729)
Create a RadRibbonForm.
Set the ApplicationMenuStyle of RibbonBar to BackstageView
Run the form and maximize it.
Open BackstageView and then click the Restore button of the form.
You will see that BackstageView bounds are not correct(see attached images).
Unplanned
Last Updated: 03 Oct 2019 07:48 by ADMIN

Please refer to the attached sample project and follow the steps from the gif file. 

You will notice that each time a random group displays only images (no text) when the groups don't fit in the ribbon's width.

Workaround:

        public MDIForm()
        {
            InitializeComponent();
            this.radRibbonBar1.RibbonBarElement.ItemVisiblityStateChanging += this.RibbonBarElement_ItemVisiblityStateChanging;
        }

        private void RibbonBarElement_ItemVisiblityStateChanging(object sender, ItemVisiblityStateChangingEventArgs args)
        {
            if (args.NextVisibilityState == ChunkVisibilityState.NoText)
            {
                args.Cancel = true;
            }
        }

Completed
Last Updated: 06 Dec 2019 14:26 by ADMIN
Release R1 2020 (LIB 2019.3.1209)
Created by: Dominik
Comments: 2
Category: RibbonBar
Type: Feature Request
1
Currently, there is no way to replace the RibbonBarPopup.
Completed
Last Updated: 02 Jun 2022 06:38 by ADMIN
Release R2 2022 SP1

Hi,

please see the attached sample and screen shot.

If application with Ribbon Bar is moved to a high dpi display (or started on a 4K display), two issues happen:

  1. The title bar is not scaled (font) and has an ugly black line
  2. The drop down element font is not scaled (the list itself is correct)

Regards
Martin

Declined
Last Updated: 23 Feb 2021 01:43 by MyeongSeong

By default, the ImagePrimitive in a ribbon button is auto sized. If you want to disable the AutoSize property of the image and specify a specific Size, the AutoSize property gets serialized in the designer, but the Size is not. This leads to missing image after reopening the designer.

After saving the changes and reopening the designer the image is missing since its Size property is not serialized:

 

 

Unplanned
Last Updated: 16 Jun 2021 11:34 by ADMIN
Please refer to the attached gif file illustrating how MS Word works. It would be good to provide a convenient UI for navigating through the tabs when the ribbon is shrunk.
Completed
Last Updated: 17 Nov 2015 16:27 by ADMIN
When RadGallery is collapsed there are missing scroll buttons arrow.
Also hover state of the gallery items is missing.
Declined
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: RibbonBar
Type: Feature Request
0
Pressing the ALT key should displays the Key Tips and moves keyboard focus to the RadRibbonBar by pressing any of the typical keyboard navigation key (i.e., TAB, SHIFT+TAB, ARROW RIGHT, ALT+ARROW, DOWN, SPACE BAR, etc.)
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: 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: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
When you set the EnableKeyMap property to false, this setting is not serialized in the designer.
Completed
Last Updated: 26 Oct 2015 15:24 by ADMIN
The NumPad keys should work in a KeyTip scenario. However, currently they do not affect the behavior of RadRibbonBar.
Declined
Last Updated: 13 Nov 2015 09:02 by ADMIN
ADMIN
Created by: Nikolay
Comments: 1
Category: RibbonBar
Type: Bug Report
0
Put a textbox and RadRibbonBar on a form with enabled key map. Press Alt + 64. You should get "@" in the textbox. Instead, you get the key tips displayed.

Workaround:
public class MyRadRibbonBar : RadRibbonBar
{
    protected override ComponentInputBehavior CreateBehavior()
    {
        return new MyRibbonBarInputBehavior(this);
    }
 
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadRibbonBar).FullName;
        }
        set
        {
        }
    }
}
 
class MyRibbonBarInputBehavior : RadRibbonBar.RibbonBarInputBehavior
{
    public MyRibbonBarInputBehavior(RadRibbonBar owner)
        : base(owner)
    {
    }
 
    protected override bool SetInternalKeyMapFocus()
    {
        if ((this.Owner as RadRibbonBar).ContainsFocus)
        {
            return base.SetInternalKeyMapFocus();
        }
 
        return false;
    }
}
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
If you maximize an mdi child form in a mdi parent, the buttons of the child form appear in the title bar of the parent form, but not in the tabstrip of the RadRibbonBar contained in the parent form.
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.