How do I populate a list of items in the little dropdown arrow next to the QuickAccessToolbar? Word 2007 shows a list of buttons that the user can turn on/off in the quick access toolbar. I would like to add similar functionality to my software.
You can add tools to the Ribbon.QuickAccessToolbar.ContextMenuTools collection.
I have added the items to the collection. How do I set the checkbox next to the item that represents whether the tool is already visible in the ApplicationMenu? As it is right now, if I drop down the context menu and check one of the items, it adds it to the ApplicationMenu again.
Never mind. I see that I was creating a new tool to add to the ContextMenuTools collection when I should have been using the same instance of the tool that I had used to add to the ApplicationMenuTools collection. Works great now!