Last active
July 30, 2019 13:06
-
-
Save rediffusion/055c7c0ddfe7a8795e7925306fa63dbd to your computer and use it in GitHub Desktop.
NOTE: Для »» `Menu` и `Dynamic Menu` подходит тоже!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub CallbackGetKeytip(control As IRibbonControl, ByRef keytip) | |
| Select Case control.ID | |
| Case "MyBtn1" | |
| keytip = "Bt1" | |
| Case "MyBtn2" | |
| keytip = "Bt2" | |
| End Select | |
| End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button | |
| id="MyBtn1" | |
| imageMso="BevelShapeGallery" | |
| getKeytip="CallbackGetKeytip" | |
| onAction="MyButtonCallbackOnAction""/> | |
| <button | |
| id="MyBtn2" | |
| imageMso="BevelShapeGallery" | |
| getKeytip="CallbackGetKeytip" | |
| onAction="MyButtonCallbackOnAction""/> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment