MapFrame.java
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:2k
源码类别:

图形图象

开发平台:

Java

  1. /*
  2.  * MapFrame.java
  3.  *
  4.  * Created on 2008年6月24日, 下午4:22
  5.  */
  6. package com.mwq.map;
  7. import com.mwq.map.tool.ScreenSize;
  8. /**
  9.  *
  10.  * @author  Administrator
  11.  */
  12. public class MapFrame extends javax.swing.JFrame {
  13.     /** Creates new form MapFrame */
  14.     public MapFrame() {
  15.         initComponents();
  16.         setBounds((ScreenSize.getWidth()-getWidth())/2, (ScreenSize.getHeight()-getHeight())/2, getWidth(), getHeight());
  17.     }
  18.     /** This method is called from within the constructor to
  19.      * initialize the form.
  20.      * WARNING: Do NOT modify this code. The content of this method is
  21.      * always regenerated by the Form Editor.
  22.      */
  23.     @SuppressWarnings("unchecked")
  24.     // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
  25.     private void initComponents() {
  26.         mapPanel = new com.mwq.map.MapPanel();
  27.         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
  28.         setTitle("电子地图");
  29.         getContentPane().setLayout(new java.awt.GridLayout(1, 0));
  30.         getContentPane().add(mapPanel);
  31.         pack();
  32.     }// </editor-fold>//GEN-END:initComponents
  33.     /**
  34.     * @param args the command line arguments
  35.     */
  36.     public static void main(String args[]) {
  37.         java.awt.EventQueue.invokeLater(new Runnable() {
  38.             public void run() {
  39.                 new MapFrame().setVisible(true);
  40.             }
  41.         });
  42.     }
  43.     // Variables declaration - do not modify//GEN-BEGIN:variables
  44.     private com.mwq.map.MapPanel mapPanel;
  45.     // End of variables declaration//GEN-END:variables
  46. }