如何改變Swing視窗的外觀?

2019-10-16 22:04:25

下面的範例展示了如何在基於Swing的應用程式中更改視窗的外觀。

使用以下API -

  • UIManager.getCrossPlatformLookAndFeelClassName() - 獲取Java的外觀和感覺。
  • UIManager.setLookAndFeel() - 設定UI元件的外觀。
  • JFrame.setDefaultLookAndFeelDecorated(true); - 改變框架的外觀和感覺。

範例

package com.yiibai.swingdemo;

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.LayoutManager;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.UIManager;

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視窗的外觀");
      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("Welcome to Tw511.com "));

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

執行上面範例程式碼,得到以下結果:

改變Swing窗口的外觀