首頁 >Java >java教程 >如何同步 Swing 按鈕和選單項目以進行獨佔選擇?

如何同步 Swing 按鈕和選單項目以進行獨佔選擇?

Patricia Arquette
Patricia Arquette原創
2024-12-25 17:34:09491瀏覽

How Can I Synchronize Swing Buttons and Menu Items for Exclusive Selection?

使用ButtonGroup 將Swing 按鈕和選單項目分組

簡介:

簡介:

問題:

一個學校專案需要建立一個繪圖應用程序,包括用於繪製線條、橢圓形和矩形的工具列按鈕和選單項目。面臨的挑戰是確保當使用者選擇工具列按鈕時,相應的選單項目也會被選擇,反之亦然,同時取消選擇所有其他按鈕和選單項目。

解決方案:

使用ButtonGroups:

ButtonGroups 可用於將AbstractButtons 連結在一起,允許您建立一個專屬的按鈕組。雖然 ButtonGroups 確實可以處理多個組,但它們在應用於平行組時有其限制。

使用動作:

另一個方法是使用 Action 介面。操作抽象化了「命令」的概念,並封裝了執行該命令所需的所有操作。將相同的操作指派給工具列按鈕和選單項,您可以共用用於執行命令的相同代碼。

Netbeans GUI 設計器整合:

在Netbeans 中GUI 設計器中,您可以透過導覽至「屬性」窗口,選擇「操作」標籤,然後從「操作」拖曳所需的操作來設定組件的操作。 “操作”調色板。

範例程式碼:

import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JToolBar;

public class ShapeSelector extends JFrame {

    private ButtonGroup toggleGroup = new ButtonGroup();

    public ShapeSelector() {
        super("Shape Selector");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        // Create the Action for shape selection
        Action shapeSelectAction = new AbstractAction() {
            @Override
            public void actionPerformed(ActionEvent e) {
                // Perform shape selection based on Action command
            }
        };

        // Create a toolbar with toggle buttons
        JToolBar toolbar = new JToolBar();
        addButton("Line", toolbar, shapeSelectAction);
        addButton("Oval", toolbar, shapeSelectAction);
        addButton("Rectangle", toolbar, shapeSelectAction);

        // Create a menu with menu items
        JMenuBar menuBar = new JMenuBar();
        JMenu shapeMenu = new JMenu("Shape");
        menuBar.add(shapeMenu);
        addMenuItem("Line", shapeMenu, shapeSelectAction);
        addMenuItem("Oval", shapeMenu, shapeSelectAction);
        addMenuItem("Rectangle", shapeMenu, shapeSelectAction);

        // Add the components to the frame
        JPanel contentPane = new JPanel();
        contentPane.add(toolbar);
        setJMenuBar(menuBar);
        add(contentPane);

        pack();
        setVisible(true);
    }

    private void addButton(String text, JToolBar toolbar, Action action) {
        JButton button = new JButton(action);
        button.setText(text);
        toggleGroup.add(button);
        toolbar.add(button);
    }

    private void addMenuItem(String text, JMenu menu, Action action) {
        JMenuItem menuItem = new JMenuItem(action);
        menuItem.setText(text);
        menu.add(menuItem);
    }

    public static void main(String[] args) {
        new ShapeSelector();
    }
}

以下程式碼片段示範如何建立一個簡單的Netbeans GUI 應用程序,該應用程式使用操作來連結工具列按鈕和選單項目:

在此程式碼中,自訂操作shapeSelectAction用於工具列按鈕和選單項目,確保選擇一個自動取消選擇其他。

以上是如何同步 Swing 按鈕和選單項目以進行獨佔選擇?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn