Package java.awt

Examples of java.awt.Container.addMouseListener()


    frame = new JFrame();//��ʼ�����漰�˵�
    frame.getContentPane().add(new Screen());
    frame.addKeyListener(this);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container contentPane = frame.getContentPane();
    contentPane.addMouseListener(this);
    contentPane.addMouseMotionListener(this);
   
    menuBar = new JMenuBar();
    gameMenu = new JMenu("��Ϸ");
    helpMenu =new JMenu("����");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.