莆田学院2015届本科毕业论文
launchComboBox_ID();
this.panel_NetOption = this.makeNetOption();
this.panel_NetOption.setVisible(false);
this.makeAll();
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.pack();
this.setLocationRelativeTo(null);
this.setVisible(true);
}
/**
* 生成一个显示在登录窗体上的有图片的JLable
* @return 显示在登录窗体上的有图片的JLable
*/
private JLabel makeLoginImage(){
Icon i = new ImageIcon("image/QQ_Login.jpg");
JLabel l = new JLabel(i);
return l;
}
19