如何在Java 中為JButton 分配快捷鍵
為JButton 分配快捷鍵允許用戶透過鍵盤按下來觸發按鈕操作,增強了按下使用者體驗和效率。
解決方案:
要為JButton 添加快捷鍵,需要執行以下步驟:
範例:
考慮以下程式碼片段:
<code class="java">// Create an Action for the button Action action = new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { // Perform the button's action } }; // Register the Action as a KeyStroke listener button.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke(KeyEvent.VK_DELETE, 0), "delete"); button.getActionMap().put("delete", action);</code>
在此範例中,當按鈕具有焦點時按下刪除鍵時會觸發該操作。
其他資源:
以上是如何使用鍵盤輸入為 Java 中的 JButton 指派快捷鍵?的詳細內容。更多資訊請關注PHP中文網其他相關文章!