Swingexamples-modify-default-look-of-button

提供:Dev Guides
移動先:案内検索

Swingの例-デフォルトの外観の変更

次の例は、Java Swingアプリケーションでボタンのデフォルトの外観を変更する方法を示しています。

次のAPIを使用しています。

  • * UIManager.setLookAndFeel()*-Javaアプリケーションの現在のルックアンドフィールを変更します。
  • * UIManager.getSystemLookAndFeelClassName()*-現在のオペレーティングシステムのルックアンドフィールを取得します。

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 Tester");
      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("Ok");
      JButton cancelButton = new JButton("Cancel");
      cancelButton.setEnabled(false);
      JButton submitButton = new JButton("Submit");

      okButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "Ok Button clicked.");
         }
      });

      submitButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(frame, "Submit Button clicked.");
         }
      });

      frame.getRootPane().setDefaultButton(submitButton);

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

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

出力

デフォルトのルックアンドフィールの変更 link:/cgi-bin/printpage.cgi [__ Print]