如何在Swing中显示带有是、否和取消的确认对话框

说明

下面的示例展示如何在Swing中显示带有是、否和取消的确认对话框。

使用以下API 

  • JOptionPane - 创建标准对话框。
  • JOptionPane.showConfirmDialog() - 显示确认消息框。
  • JOptionPane.YES_NO_CANCEL_OPTION - 获取是,否和取消按钮。

代码示例

package com.yiidian;

import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;

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(JFrame frame){
      //Create a border
      Border blackline = BorderFactory.createTitledBorder("Title");
      JPanel panel = new JPanel();
      LayoutManager layout = new FlowLayout();
      panel.setLayout(layout);       

      JPanel panel1 = new JPanel();
      String spaces = "                   ";

      panel1.add(new JLabel(spaces + "Title border to JPanel" + spaces));  
      panel1.setBorder(blackline);

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

执行效果如下:

热门文章

优秀文章