FIX. RadRibbonForm prevents the Windows taskbar to show when taskbar AutoHide is on
1. You need to have the Controls Suite installed 2. Add a new RadRibbonBarForm to the project using the add new item dialog 3. You will see that the RadRibbonBar that is within the RadRibbonBarForm has some glitches
The drop down of QuickAccessToolBar does not close when its drop down button is clicked while the drop down is opened
When Windows aero effects are enabled and the form width is being decreased, the title bar text appears over the title bar buttons and further more when continuing reducing the width of the form the buttons disappear and a small black rectangle is shown instead.
Removing the minimize and maximize buttons when Windows aero effects are enabled is not possible neither through the form properties neither through the ribbon bar element.
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.
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; } }
The NumPad keys should work in a KeyTip scenario. However, currently they do not affect the behavior of RadRibbonBar.
If you press the Alt key once, you get the KeyTips displayed. If you press it once more, the KeyTips should become hidden and the focus should be returned to the previously focused control.
radRibbonBar1.RibbonBarElement.ApplicationButtonElement.DropDownMenu.FadeAnimationType to be available in properties window.
In RadPanelBar elements (button, progress bar) TextAlignment property should be synchronized with TextPrimitive.TextAlignmet property.
Moving a RibbonTab from one RadRibbonBar to another does not correctly place its content items in the destination Ribbon Bar's content panel.
The RadRibbonBar's MDI menu disappears when the control is collapsed to popup and a MDI child is maximized.
When you open the content popup of a collapsed group and click on a button that shows a dialog form, the popup stays opened.
Go to Examples app, section RibbonBar >> FirstLook. Decrease the size of the main Examples form. Dropdownbuttons will appear instead of the actual content in RadRibbonBar. Open one of these buttons and click on the empty space area of the popup. The popup will close, but is should stay opened.
Go to the Examples, RibbonBar >> FirstLook. Decrease the width of the main form. Now open the 'Size' popup of RadRibbonBar. You will notice that the Size dropdown button is not properly aligned i n the popup.
RadRibbonBar KeyTips are painted and executed even if the associated item is disabled.
When you set the EnableKeyMap property to false, this setting is not serialized in the designer.