Swing
Swing教學首頁
Swing介紹
Swing開發環境安裝
Swing控件
Swing Component類
Swing Container類
Swing JComponent類
Swing JLabel
Swing JButton
Swing JColorChooser
Swing JCheckBox
Swing JRadioButton
Swing JList
Swing JComboBox
Swing JTextField
Swing JTextArea
Swing ImageIcon
Swing JScrollBar
Swing JOptionPane
Swing JFileChooser
Swing JProgressBar
Swing JSlider
Swing JSpinner
Swing事件處理
SWING Event事件類
SWING AWTEvent事件類
SWING ActionEvent事件類
SWING InputEvent事件類
SWING KeyEvent事件類
SWING MouseEvent事件類
SWING WindowEvent事件類
SWING AdjustmentEvent事件處理
SWING ComponentEvent處理類
SWING ContainerEvent事件處理類
SWING MouseMotionEvent事件處理
SWING PaintEvent事件類
Swing事件監聽器
SWING ActionListener接口
SWING ComponentListener接口
Swing ItemListener接口
Swing KeyListener接口
Swing MouseListener Interface
Swing WindowListener接口
Swing AdjustmentListener接口
Swing ContainerListener接口
Swing MouseMotionListener接口
Swing FocusListener接口
Swing事件適配器
Swing FocusAdapter類
Swing KeyAdapter類
Swing MouseAdapter類
Swing WindowAdapter類
Swing MouseMotionAdapter類
Swing Layout佈局
Swing LayoutManager接口
Swing LayoutManager2接口
Swing BorderLayout佈局
Swing CardLayout佈局
Swing FlowLayout佈局類
Swing GridLayout佈局類
Swing GridBagLayout佈局類
Swing GroupLayout佈局類
Swing SpringLayout佈局類
Swing Menu菜單類
Swing JMenuBar類
Swing JMenuItem類
Swing JMenu類
Swing JCheckboxMenuItem類及例子
Swing JRadioButtonMenuItem類及例子
Swing JPopupMenu類及實例
Swing容器
Swing JPanel類及實例
Swing JFrame類和實例
Swing JWindow類及實例

Swing JColorChooser

JColorChooser 類顏色選擇器提供了一個窗格設計,讓用戶操作和選擇顏色的控制。

類聲明

以下是聲明的 javax.swing.JColorChooser類:

public class JColorChooser extends JComponent implements Accessible

字段域

以下是javax.swing.JLabel 類的字段:

  • protected AccessibleContext accessibleContext

  • static String CHOOSER_PANELS_PROPERTY -- chooserPanel 數組屬性的名稱。

  • static String PREVIEW_PANEL_PROPERTY -- 預覽面板屬性名稱。

  • static String SELECTION_MODEL_PROPERTY -- 選擇模型屬性名稱

類構造函數

S.N.

構造函數 & 描述

1

JColorChooser()
Creates a color chooser pane with an initial color of white.

2

JColorChooser(Color initialColor)
Creates a color chooser pane with the specified initial color.

3

JColorChooser(ColorSelectionModel model)
Creates a color chooser pane with the specified ColorSelectionModel.

類方法

S.N.

方法 & 描述

1

void addChooserPanel(AbstractColorChooserPanel panel)
Adds a color chooser panel to the color chooser.

2

static JDialog createDialog(Component c, String title, boolean modal, JColorChooser chooserPane, ActionListener okListener, ActionListener cancelListener)
Creates and returns a new dialog containing the specified ColorChooser pane along with "OK", "Cancel", and "Reset" buttons.

3

AccessibleContext getAccessibleContext()
Gets the AccessibleContext associated with this JColorChooser.

4

AbstractColorChooserPanel[] getChooserPanels()
Returns the specified color panels.

5

Color getColor()
Gets the current color value from the color chooser.

6

boolean getDragEnabled()
Gets the value of the dragEnabled property.

7

JComponent getPreviewPanel()
Returns the preview panel that shows a chosen color.

8

ColorSelectionModel getSelectionModel()
Returns the data model that handles color selections.

9

ColorChooserUI getUI()
Returns the L&F object that renders this component.

10

String getUIClassID()
Returns the name of the L&F class that renders this component.

11

protected String paramString()
Returns a string representation of this JColorChooser.

12

AbstractColorChooserPanel removeChooserPanel(AbstractColorChooserPanel panel)
Removes the Color Panel specified.

13

void setChooserPanels(AbstractColorChooserPanel[] panels)
Specifies the Color Panels used to choose a color value.

14

void setColor(Color color)
Sets the current color of the color chooser to the specified color.

15

void setColor(int c)
Sets the current color of the color chooser to the specified color.

16

void setColor(int r, int g, int b)
Sets the current color of the color chooser to the specified RGB color.

17

void setDragEnabled(boolean b)
Sets the dragEnabled property, which must be true to enable automatic drag handling (the first part of drag and drop) on this component.

18

void setPreviewPanel(JComponent preview)
Sets the current preview panel.

19

void setSelectionModel(ColorSelectionModel newModel)
Sets the model containing the selected color.

20

void setUI(ColorChooserUI ui)
Sets the L&F object that renders this component.

21

static Color showDialog(Component component, String title, Color initialColor)
Shows a modal color-chooser dialog and blocks until the dialog is hidden.

22

void updateUI()
Notification from the UIManager that the L&F has changed.

方法繼承

這個類從以下類繼承的方法:

  • javax.swing.JComponent

  • java.awt.Container

  • java.awt.Component

  • java.lang.Object

JColorChooser 例子

選擇使用任何編輯器創建以下java程序在 D:/ > SWING > com > yiibai > gui >

SwingControlDemo.java

package com.yiibai.gui; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class SwingControlDemo { private JFrame mainFrame; private JLabel headerLabel; private JLabel statusLabel; private JPanel controlPanel; public SwingControlDemo(){ prepareGUI(); } public static void main(String[] args){ SwingControlDemo swingControlDemo = new SwingControlDemo(); swingControlDemo.showColorChooserDemo(); } private void prepareGUI(){ mainFrame = new JFrame("Java Swing Examples"); mainFrame.setSize(400,400); mainFrame.setLayout(new GridLayout(3, 1)); mainFrame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent windowEvent){ System.exit(0); } }); headerLabel = new JLabel("", JLabel.CENTER); statusLabel = new JLabel("",JLabel.CENTER); statusLabel.setSize(350,100); controlPanel = new JPanel(); controlPanel.setLayout(new FlowLayout()); mainFrame.add(headerLabel); mainFrame.add(controlPanel); mainFrame.add(statusLabel); mainFrame.setVisible(true); } private void showColorChooserDemo(){ headerLabel.setText("Control in action: JColorChooser"); JButton chooseButton = new JButton("Choose Background"); chooseButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { Color backgroundColor = JColorChooser.showDialog(mainFrame, "Choose background color", Color.white); if(backgroundColor != null){ controlPanel.setBackground(backgroundColor); mainFrame.getContentPane().setBackground(backgroundColor); } } }); controlPanel.add(chooseButton); mainFrame.setVisible(true); } }

編譯程序,使用命令提示符。到 D:/ > SWING 然後輸入以下命令.

D:SWING>javac comyiibaiguiSwingControlDemo.java

如果沒有錯誤出現,這意味着編譯成功。使用下面的命令來運行程序。

D:SWING>java com.yiibai.gui.SwingControlDemo

驗證下面的輸出

Swing