怎样在Java里创建模态对话框

avatar
作者
筋斗云
阅读量:0

在Java中,可以使用JOptionPane类创建一个模态对话框

import javax.swing.*;  public class ModalDialogExample {     public static void main(String[] args) {         SwingUtilities.invokeLater(() -> createAndShowGUI());     }      private static void createAndShowGUI() {         // 创建一个 JFrame,作为主窗口         JFrame frame = new JFrame("Modal Dialog Example");         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);         frame.setSize(300, 200);         frame.setVisible(true);          // 创建一个 JButton,点击时会显示模态对话框         JButton showDialogButton = new JButton("Show Modal Dialog");         showDialogButton.addActionListener(e -> {             JOptionPane.showMessageDialog(frame, "This is a modal dialog!", "Modal Dialog", JOptionPane.INFORMATION_MESSAGE);         });          // 将按钮添加到主窗口的内容面板中         frame.getContentPane().add(showDialogButton);     } } 

这个例子首先创建了一个JFrame作为主窗口。然后,我们创建了一个JButton,当用户点击该按钮时,会显示一个模态对话框。JOptionPane.showMessageDialog()方法用于创建并显示模态对话框。该方法接受四个参数:

  1. 父组件(在本例中为主窗口)
  2. 对话框的消息内容
  3. 对话框的标题
  4. 对话框的消息类型(在本例中为JOptionPane.INFORMATION_MESSAGE,表示信息类型的对话框)

运行此代码后,你将看到一个包含按钮的主窗口。点击按钮后,将显示一个模态对话框,直到用户关闭它。在这个例子中,对话框是一个简单的信息对话框,但你也可以根据需要创建其他类型的模态对话框,如警告、错误或确认对话框。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!