Swing如何修改按鈕默認外觀?

下麵的示例展示了如何在Java Swing應用程式中修改按鈕的默認外觀。

使用以下API -

  • UIManager.setLookAndFeel() - 更改java應用程式的當前外觀。
  • UIManager.getSystemLookAndFeelClassName() - 獲取當前操作系統的外觀。

示例

package com.zaixian.swingdemo;

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class SwingTester {
   public static void main(String[] args)
      throws ClassNotFoundException, InstantiationException
      , IllegalAccessException, UnsupportedLookAndFeelException {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
      createWindow();
   }

   private static void createWindow() {
      JFrame frame = new JFrame("Swing修改按鈕默認樣式(xuhuhu.com)");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

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

   private static void createUI(final JFrame frame){
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);

      JButton okButton = new JButton("確定");
      JButton cancelButton = new JButton("取消");
      cancelButton.setEnabled(false);
      JButton submitButton = new JButton("提交");

      okButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "點擊了確定按鈕");
         }
      });

      submitButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "點擊了提交按鈕");
         }
      });

      frame.getRootPane().setDefaultButton(submitButton);

      panel.add(okButton);
      panel.add(cancelButton);
      panel.add(submitButton);

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

執行上面示例代碼,得到以下結果:

修改按鈕的默認外觀


上一篇: Swing按鈕示例 下一篇: Swing複選框示例