Swing對話方塊中建立顏色選擇器

2019-10-16 22:05:24

下面的範例展示了如何在基於swing的應用程式中的對話方塊中建立和使用顏色選擇器。

使用以下API -

  • JColorChooser() - 建立標準顏色選擇器,允許使用者從托盤中選擇顏色。
  • JColorChooser.showDialog(); - 將「顏色選擇器」顯示為對話方塊。

範例

package com.yiibai.swingdemo;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JColorChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class SwingTester {
    public static void main(String[] args) {
        createWindow();
    }

    private static void createWindow() {
        JFrame frame = new JFrame("Swing對話方塊中建立顏色選擇器(tw511.com)");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        createUI(frame);
        frame.setSize(560, 400);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    private static void createUI(final JFrame frame) {
        JPanel panel = new JPanel();
        LayoutManager layout = new FlowLayout();
        panel.setLayout(layout);
        final JLabel colorLabel = new JLabel("顏色選擇器範例");
        JButton button = new JButton("選擇顏色:");

        button.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                Color color = JColorChooser.showDialog(frame, "選擇標籤顏色", Color.white);

                colorLabel.setForeground(color);
            }
        });
        panel.add(colorLabel);
        panel.add(button);
        frame.getContentPane().add(panel, BorderLayout.CENTER);
    }
}

執行上面範例程式碼,得到以下結果:

對話框中創建顏色選擇器