Completed
Last Updated: 17 Nov 2015 07:47 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 16 Nov 2015 07:16
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - key tips should not be displayed for disabled RadButtonElements placed in a RadRibbonBarButtonGroup
Workaround:

public Form1()
{
    InitializeComponent();
     
    this.radRibbonBar1.KeyTipShowing+=radRibbonBar1_KeyTipShowing;
}

private void radRibbonBar1_KeyTipShowing(object sender, CancelEventArgs e)
{
    RadButtonElement b = sender as RadButtonElement;
    if (b!=null && b.Enabled==false)
    {
        e.Cancel = true;
    }
}

Attached Files:
0 comments