Java关于UI外观设置的帮助类UIHelper的几个方法

本文介绍了一个Java UI辅助类,提供了窗口居中、最大化及界面风格设置等实用功能,并包含检查输入值是否为空的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


public class UIHelper {

//    设置窗口居中显示
    public static void setCenter(Component comp) {
        Toolkit toolkit = Toolkit.getDefaultToolkit();
        Dimension screenSize = toolkit.getScreenSize();

        int x = (screenSize.width - (int) comp.getPreferredSize().getWidth()) / 2;
        int y = (screenSize.height - (int) comp.getPreferredSize().getHeight()) / 2;

        comp.setLocation(x, y);
    }


/*设置窗口最大化,窗口对象是JFrame*/
    public static void setWinMax(JFrame frame)
    {
        frame.setExtendedState(javax.swing.JFrame.MAXIMIZED_BOTH);
    }

 

  /*设置窗口最大化,当窗口对象为JPanel*/
 public static void setMaxSize(JPanel panel) {
  GraphicsEnvironment graphicsEnvironment=GraphicsEnvironment.getLocalGraphicsEnvironment();   
  //get maximum window bounds  
  Rectangle maximumWindowBounds=graphicsEnvironment.getMaximumWindowBounds();
  Dimension activeSize = new Dimension(maximumWindowBounds.width,maximumWindowBounds.height);
  panel.setPreferredSize(activeSize);
 }


 /*校验界面输入值是否为空 */
    public static boolean isEmpty(String inputValue){
        if(inputValue ==null || "".equals(inputValue.trim()))
            return true;
        else
            return false;
    }

 

/*让java gui 界面使用前操作系统的界面风格,让java界面不再丑陋^_^*/

 public static void setUILookAndFeel() {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (ClassNotFoundException ex) {
            Logger.getLogger(SysUtil.class.getName()).log(Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            Logger.getLogger(SysUtil.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            Logger.getLogger(SysUtil.class.getName()).log(Level.SEVERE, null, ex);
        } catch (UnsupportedLookAndFeelException ex) {
            Logger.getLogger(SysUtil.class.getName()).log(Level.SEVERE, null, ex);
        }

    }


}

我们的工作室的 Java ERP 作品,多多指点支持,点击打开链接

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值