日期:2014-05-20 浏览次数:20754 次
ChatView.main(null);
public static void main(String[] args) throws InvocationTargetException, InterruptedException{
SwingUtilities.invokeLater(new Runnable(){
public void run() {
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
try {
//设置皮肤
UIManager.setLookAndFeel( new SubstanceOfficeBlue2007LookAndFeel());
} catch (UnsupportedLookAndFeelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ChatView cv = new ChatView();
name = "大肚腩";
cv.setTitle(name);
cv.setSize(500,400);
// cv.setResizable(false); //不允许用户改变窗口大小
cv.setDefaultCloseOperation(EXIT_ON_CLOSE);
// com.sun.awt.AWTUtilities.setWindowOpacity(cv, .7f);
cv.setVisible(true);
cv.setLocationRelativeTo(null);
}
});
}