如何在Java Swing程序中创建颜色选择器

说明

以下示例展示了如何在Java Swing程序中创建颜色选择器。

我们正在使用以下 API。

  • JColorChooser : 创建一个标准的颜色选择器,允许用户从调色板中选择颜色。

  • JColorChooser.showDialog(); : 将颜色选择器显示为对话框。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

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

   private static void createWindow() {    
      JFrame frame = new JFrame("一点教程网:Swing Tester");
      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("Color Chooser Example");
      JButton button = new JButton("Choose Color");

      button.addActionListener(new ActionListener() {
         @Override
         public void actionPerformed(ActionEvent e) {
            Color color = JColorChooser.showDialog(frame,
               "Select Color of Label", Color.black);
      
            colorLabel.setForeground(color); 
         }
      });     
      panel.add(colorLabel);  
      panel.add(button);      
      frame.getContentPane().add(panel, BorderLayout.CENTER);    
   }  
}

执行效果如下:

热门文章

优秀文章