如何修改Swing的Window的外观样式

说明

以下示例展示了如何修改Swing的Window的外观样式。

我们正在使用以下 API。

  • UIManager.getCrossPlatformLookAndFeelClassName() : 获得 Java 的外观。

  • UIManager.setLookAndFeel() : 设置 UI 组件的外观。

  • JFrame.setDefaultLookAndFeelDecorated(true); : 改变框架的外观和感觉。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;

public class SwingTester {
   public static void main(String[] args) {
      try {
         UIManager.setLookAndFeel(
         UIManager.getCrossPlatformLookAndFeelClassName());
      } catch (Exception e) {
   }
      JFrame.setDefaultLookAndFeelDecorated(true);
      createWindow();
   }

   private static void createWindow() {
      JFrame frame = new JFrame("一点教程网:Swing Tester");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

      createUI(frame);
      frame.setSize(560, 200);
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }

   private static void createUI(JFrame frame){
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);
      panel.add(new JLabel("Hello World!"));

      frame.getContentPane().add(panel, BorderLayout.CENTER);
   }
}

执行效果如下:

热门文章

优秀文章