首页>代码>Java+Swing+SQL+Server2005开发酒店管理系统源代码下载>/04/DrinkeryManage/src/com/mwq/DrinkeryManage.java
package com.mwq;

import java.awt.Dimension;
import java.awt.Toolkit;

import javax.swing.SwingUtilities;
import javax.swing.UIManager;

import com.mwq.frame.LandFrame;

public class DrinkeryManage {
	public DrinkeryManage() {
		// Center the window
		Toolkit toolkit = Toolkit.getDefaultToolkit();
		Dimension screenSize = toolkit.getScreenSize();
		LandFrame landFrame = new LandFrame();
		Dimension frameSize = landFrame.getSize();
		if (frameSize.width > screenSize.width) {
			frameSize.width = screenSize.width;
		}
		if (frameSize.height > screenSize.height) {
			frameSize.height = screenSize.height;
		}
		landFrame.setLocation((screenSize.width - frameSize.width) / 2,
				(screenSize.height - frameSize.height) / 2);
		landFrame.setVisible(true);
	}

	public static void main(String[] args) {
		SwingUtilities.invokeLater(new Runnable() {
			public void run() {
				try {
					UIManager.setLookAndFeel(UIManager
							.getSystemLookAndFeelClassName());
				} catch (Exception exception) {
					exception.printStackTrace();
				}
				new DrinkeryManage();
			}
		});
	}

}
最近下载更多
Sheep27  LV1 2024年7月5日
这是一个天才  LV1 2024年5月30日
wanglinddad  LV55 2023年12月18日
sunshine9920  LV12 2023年10月22日
E-dream  LV1 2023年6月15日
微信网友_6511688260882432  LV3 2023年6月13日
WOWsuperman  LV1 2023年6月6日
1135177454  LV1 2023年5月21日
UltimateI  LV1 2023年5月19日
你们的代码都是我的了  LV16 2022年12月9日
最近浏览更多
srl2881552  LV10 1月7日
拜托你仔细听  LV3 2024年12月23日
interface  LV22 2024年8月10日
wwkddjjj  LV8 2024年8月9日
DelinDelin 2024年8月3日
暂无贡献等级
Sheep27  LV1 2024年7月5日
odasdas  LV1 2024年6月23日
项立利  LV1 2024年5月30日
这是一个天才  LV1 2024年5月30日
2232k7k8  LV5 2024年5月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友