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) {
用户评论