Hello. I've update to the last version 6.26. And i've found the new keytip feature. Is it possible to disable this new feature? It's very important for my application…
Thanx in advance
Carlo
We have closed this ticket because another page addresses its subject:
Add the ability to disable KeyTips in an applicationDisable KeyTips
Answers approved by DevExpress Support
Since there are no plans to fix this "BUG", I felt changing the PAS leader not as a goal.
Therefore, that was easily integrated as indirect inheritance into the program.
Delphitype
TdxRibbon = class(dxRibbon.TdxRibbon)
function GetAccessibilityHelperClass: TdxBarAccessibilityHelperClass; override;
end;
TMyRibbonAccessibilityHelper = class(TdxRibbonAccessibilityHelper)
protected
function AreKeyTipsSupported(out AKeyTipWindowsManager: IdxBarKeyTipWindowsManager): Boolean; override;
end;
TMainForm = class(TdxRibbonForm)
Ribbon: TdxRibbon;
...
end;
{ TdxRibbon }
function TdxRibbon.GetAccessibilityHelperClass: TdxBarAccessibilityHelperClass;
begin
Result := TMyRibbonAccessibilityHelper;
end;
{ TMyRibbonAccessibilityHelper }
function TMyRibbonAccessibilityHelper.AreKeyTipsSupported(out AKeyTipWindowsManager: IdxBarKeyTipWindowsManager): Boolean;
begin
Result := False;
end;
A direct inheritance would have gone, but so the cost is somewhat lower.
An explanation of why this is probably so, Alex M. had once mentioned.
https://www.devexpress.com/Support/Center/Question/Details/S18657
And other "solutions" have now also tried.
e.g. http://stackoverflow.com/questions/23888388/how-to-disable-dxribbon-keytips
As it looks some seem to wish this feature.
Hello Daniel,
I strongly recommend that you do not disable Key Tips in your Ribbon UI. Microsoft has implemented them as a nice feature that allows users to navigate through the interface without using a mouse. Using KeyTips will increase the usability of your application for users who are used to work with MS Office.
Thanks to Daniel Schuchardt for adding this simple solution to this BUG - very useful.
Other Answers
Hi Carlo,
According to the MS Office 2007 UI Guidelines, KeyTips are "must be" and thus, the ExpressBars doesn't allow you to turn them off. For now, the only way to disable KeyTips is to modify the ExpressBars' source code. You will find the code correction below. Simply rebuild your project with the updated version of the dxRibbon.pas unit.
Thanks,
Serge
DelphidxRibbon.pas
function TdxRibbonAccessibilityHelper.AreKeyTipsSupported(
out AKeyTipWindowsManager: IdxBarKeyTipWindowsManager): Boolean;
begin
Result := False;
...
No worries, Carlo. You are always welcome :)
Thanks,
Serge
P.S. The Support Center now allows you to close issues like this yourself if you wish. Just click the "Close Report" button.