文件名称:java更换窗口背景颜色
文件大小:3KB
文件格式:TXT
更新时间:2015-12-07 14:46:24
java 背景颜色
利用java代码更换创口背景颜色 class SimpleChangePanel extends JPanel implements ActionListener { private JButton yellowButton; public SimpleChangePanel() { yellowButton = new JButton("Yellow"); add(yellowButton); yellowButton.addActionListener(this); } public void actionPerformed(ActionEvent evt) { Color color = Color.yellow; setBackground(color); repaint(); } }