Unplanned
Last Updated: 26 Jun 2018 11:28 by ADMIN
ADMIN
Kiril Vandov
Created on: 15 Aug 2014 07:41
Category: RibbonView
Type: Feature Request
8
RibbonView: Allow the RadRibbonView to ignore the windows menu location settings for the MinimizedPopup
Allow the RadRibbonView to ignore the windows menu location settings for the MinimizedPopup
5 comments
ADMIN
Martin
Posted on: 26 Jun 2018 11:28
Hello Ben,

This is unexpected. May I ask you to open a new forum or support ticket where you can post some runnable code showing the issue? This way we can test it and see what is going on.

Regards,
Martin Ivanov
Technical Support Engineer
Ben
Posted on: 03 Jan 2018 08:36
Since implementing the suggested workaround, the popup seems to quickly hide/show when switching ribbon tabs - this causes a flicker which is not desirable.
ADMIN
Kiril Vandov
Posted on: 03 Nov 2016 15:41
The RadRibbonView displays its content in a WPF Popup when in minimized state. The same way as the DropDownButton/SplitButton/ComboBox .. e.t. All of the popups in a WPF Application are controlled by the windows menu location settings. 
Ignoring these setting will be a breaking change to the clients which are used to display the RadRibbonView in its current state, that is why we can't consider this as a bug.

Once the feature is complete the users will have the control over whether they want to ignore the default windows settings or always display the popups  from right to left. 

Until this feature is complete you can ignore the windows settings using the following code(called after InitializeComponents):
public static void SetAlignment()
{
    var ifLeft = SystemParameters.MenuDropAlignment;
    if (ifLeft)
    {
        // change to false
        var t = typeof(SystemParameters);
        var field = t.GetField("_menuDropAlignment", BindingFlags.NonPublic | BindingFlags.Static);
        field.SetValue(null, false);
        ifLeft = SystemParameters.MenuDropAlignment;
    }
}
micro
Posted on: 26 Oct 2016 16:29
Where is the escalate button? This should not be not a feature request, it is a bug report...
Patrick
Posted on: 24 Nov 2014 12:50
Hello, what's the state of this issue?