| 不具合 ID 番号 |
BUG-000157374 |
| 送信されました | April 10, 2023 |
| 最終更新日 | June 5, 2024 |
| 適用対象 | ArcGIS Pro SDK for .NET |
| 見つかったバージョン | 3.1 |
| オペレーティング システム | N/A |
| オペレーティング システムのバージョン | N/A |
| ステータス | As Designed
開発チームによる確認後に、この動作が設計どおりであると判断されました。 詳細については、「参考情報」セクションをご参照ください。
|
参考情報
In order to see the correct menu access keys, the button definitions need to be updated with the menuKeytip attribute.
Menu access keys are the underlined characters that allow for single-key execution of a button that appears in a menu. These menus can be a context menu in the application, or a menu item hosted on the ribbon. ArcGIS Pro 3.1 provides a new way to define the character to use for the menu access key. Use the menuKeytip attribute to define the menu access key for a button. menuKeytip values are limited to a single character.
Key tips are the square overlays that appear when pushing the Alt key on the keyboard. They only appear on the Ribbon and Quick Access Toolbar.
See the 'Use keyboard shortcuts on the ribbon' section in this documentation topic:
https://pro.arcgis.com/en/pro-app/latest/get-started/keyboard-shortcuts.htm#ESRI_SECTION1_9F08B79C667144B0BB3FE893D936C22B
To control the key tip for a button, use the key tip attribute. Unlike menuKeytip, the key tip value can have more than one character. The key tip value is used when the button shows inside a ribbon group or gallery.
Some buttons may appear on both the ribbon and inside menus. These cases can be handled by defining both key tip and menuKeytip in the button element. When the button appears on the ribbon surface, the key tip definition is used. When it appears in a menu, the access key comes from menuKeytip.
対処法
If Japanese is used with 'caption', it needs to be modified as below (add the (Y) after the caption name), and the keytips work as expected.
<button id="RibbonControls_Menu1_Items_Button3" caption="数値地図 (国土基本情報) のインポート (Q)" keytip="XV" className="Menu1_button3" loadOnClick="true" smallImage="Images\GenericButtonGreen16.png" largeImage="Images\GenericButtonGreen32.png">
<tooltip heading="数値地図 (国土基本情報) のインポート">Menu Button 3 ToolTip<disabledText /></tooltip>
再現の手順