Ticket CQ56188
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Add the ability to disable KeyTips in an application

Disable KeyTips

created 18 years ago

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

Answers approved by DevExpress Support

created 11 years ago (modified 8 years ago)

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.

Delphi
type 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.

    Comments (2)
    DevExpress Support Team 11 years ago

      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.

      HH HH
      Henrik Haumann 9 years ago

        Thanks to Daniel Schuchardt for adding this simple solution to this BUG - very useful.

        Other Answers

        created 18 years ago

        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

        Delphi
        dxRibbon.pas function TdxRibbonAccessibilityHelper.AreKeyTipsSupported( out AKeyTipWindowsManager: IdxBarKeyTipWindowsManager): Boolean; begin Result := False; ...
          Comments (2)

            Thank you very much :-)
            Carlo

            Serge (DevExpress Support) 18 years ago

              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.

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.