Hello everyone, I want to turn off the hidden function of the ribbonTab drop-down interface after double-clicking the mouse in Telerik's radRibbonBar control. How can I change it? I rewrote the double-click event of the ribbonTab and found that it has no effect. After double-clicking the ribbonTab, it will still be hidden. Thank you.
private void radRibbonBar1_Load(object sender, EventArgs e)
{
foreach (var tab in radRibbonBar1.CommandTabs)
{
tab.DoubleClick += new EventHandler(ribbonTab_DoubleClick);
}
}
private void ribbonTab_DoubleClick(object sender, EventArgs e)
{
// do nothing
}