设置窗体图标

来源:互联网 发布:mysql 显示字符集 编辑:程序博客网 时间:2024/05/01 21:14

/**
  * @param args
  */
 public static void main(String[] args) {

  SwingUtilities.invokeLater(new Runnable() {
   public void run() {
    PoInfoEditMainFrame thisClass = new abcFrame();
    ImageIcon icon = new ImageIcon("resource/images/poinfoedit.gif");
    thisClass.setIconImage(icon.getImage());
    thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    thisClass.setExtendedState(JFrame.MAXIMIZED_BOTH);
    thisClass.setVisible(true);
    //

    thisClass.ImpAllPoFromScript(true);
   }
  });
 }