Swingexamples-show-confirm-dialog-with-custom

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

Swingの例-カスタムボタンで確認ダイアログを表示

次の例は、スイングベースのアプリケーションでカスタムボタンテキストを含む確認ダイアログを表示する方法を示しています。

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

  • JOptionPane -標準のダイアログボックスを作成します。
  • * JOptionPane.showOptionDialog()*-複数のオプションでメッセージアラートを表示します。
  • JOptionPane.YES_NO_OPTION -[はい]および[いいえ]ボタンを取得します。

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.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class SwingTester {
   public static void main(String[] args) {
      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 button = new JButton("Click Me!");
      final JLabel label = new JLabel();
      button.addActionListener(new ActionListener() {
         @Override
         public void actionPerformed(ActionEvent e) {
            String[] options = {"Yes! Please.", "No! Not now."};
            int result = JOptionPane.showOptionDialog(
               frame,
               "Sure? You want to exit?",
               "Swing Tester",
               JOptionPane.YES_NO_OPTION,
               JOptionPane.QUESTION_MESSAGE,
               null,    //no custom icon
               options, //button titles
               options[0]//default button
            );
            if(result == JOptionPane.YES_OPTION){
               label.setText("You selected: Yes! Please");
            }else if (result == JOptionPane.NO_OPTION){
               label.setText("You selected: No! Not now.");
            }else {
               label.setText("None selected");
            }
         }
      });

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

出力

カスタマイズされたボタンで確認メッセージアラートを表示します。リンク:/cgi-bin/printpage.cgi [__印刷]