Package com.gui

Examples of com.gui.MainPanel


    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    win.setPreferredSize(d);
    win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    MainPanel.SCR_HEIGHT = d.height;
    MainPanel.SCR_WIDTH  = d.width;
    MainPanel dp = new MainPanel(win)
    win.addKeyListener(dp.mainMenu);
    win.addMouseListener(dp);
    win.add(dp);
    win.pack();   
View Full Code Here

TOP

Related Classes of com.gui.MainPanel

Copyright © 2018 www.massapicom. 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.