⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 locationutil.java

📁 酒店管理系统·可用于一般旅社的营业操作。方便你的酒店管理
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.redingsoft.locationutil;import java.awt.Component;import java.awt.Toolkit;/** * * @author Administrator */public class LocationUtil {    //设置窗体居中显示public static void setLocation(Component frame){          java.awt.Dimension screen=Toolkit.getDefaultToolkit().getScreenSize();          java.awt.Dimension Dframe=frame.getSize();          if(Dframe.height>screen.height){              Dframe.height=screen.height;          }          if(Dframe.width>screen.width){              Dframe.width=screen.width;          }          frame.setLocation((screen.width-Dframe.width)/2, (screen.height-Dframe.height)/2);      }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -