Hide the Recent Documents List inside Ribbon Application Menu in Delphi 2010?
I am using Delphi 2010 to implement an Application Menu for my ribbon control... but there is a recent documents list (or at least the title 开发者_开发技巧of it) on the right hand side of it...
Is it possible to hide this list and put something else there instead, like I am thinking of a list of available functions...
Will this violate the term of use of the ribbon control?
Thanks a lot.
Yes, you can change TRibbon.ApplicationMenu.Caption property to change the caption of that list, and you can also change TRibbon.ApplicationMenu.CommandType to "ctCommands" to provide a list of your favorite commands rather than Recent Documents.
精彩评论