Unplanned
Last Updated: 30 Mar 2016 10:52 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 Mar 2016 09:02
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - right clicking over a tab in the collapsed ribbon shows the tab empty
If I left-click on one of tab header, the related tab expand itself showing all the contained items.
But, if I expand the tab using the mouse right button, the tab expand itself but it appears blank!

Workaround:

private void radRibbonBar1_MouseDown(object sender, MouseEventArgs e)
{
    RibbonTab tab = this.radRibbonBar1.ElementTree.GetElementAtPoint(e.Location) as RibbonTab;
    if (tab!=null && e.Button== System.Windows.Forms.MouseButtons.Right)
    {
        tab.IsSelected = true;
    }
}
Attached Files:
0 comments