📄 locationutil.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 + -