Java Swing求教各位了
有个问题想问一下大家..关于java Swing的几个问题
public class GameWindow{ public static void main(String[] args) { JFrame jFrame = new JFrame(); jFrame.setUndecorated(true); //去掉窗体装饰 jFrame.setSize(300, 200); jFrame.setLocation(300, 200); JPanel jPanel = new JPanel(); jPanel.setBackground(Color.BLUE); JButton jLabel = new JButton(); jLabel.setBackground(Color.CYAN); jPanel.add(jLabel); jFrame.add(jPanel); jFrame.setVisible(true); }}