如何在Swing中的按钮上显示带有自定义文本的确认对话框

说明

以下示例展示了如何在Swing中的按钮上显示带有自定义文本的确认对话框。

我们正在使用以下 API。

  • JOptionPane : 创建一个标准对话框。

  • JOptionPane.showOptionDialog() : 显示具有多个选项的消息警报。

  • JOptionPane.YES_NO_OPTION : 获取是和否按钮。

代码示例

package com.yiidian;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

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);    
   }  
}

执行效果如下:

热门文章

优秀文章