在Java中,可以使用Swing庫創建自定義對話框
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
JDialog
:public class CustomDialog extends JDialog {
// 構造函數
public CustomDialog(Frame owner, String title) {
super(owner, title, true);
initComponents();
}
private void initComponents() {
// 在這里添加組件和設置布局
}
}
initComponents()
方法中添加組件和設置布局:private void initComponents() {
// 創建一個標簽
JLabel label = new JLabel("請輸入您的名字:");
// 創建一個文本字段
JTextField textField = new JTextField(20);
// 創建一個確認按鈕
JButton okButton = new JButton("確認");
okButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 獲取文本字段的值
String name = textField.getText();
System.out.println("您的名字是:" + name);
dispose(); // 關閉對話框
}
});
// 創建一個面板并添加組件
JPanel panel = new JPanel();
panel.add(label);
panel.add(textField);
panel.add(okButton);
// 設置對話框的內容面板
setContentPane(panel);
// 設置對話框的大小
setSize(300, 150);
// 設置對話框居中顯示
setLocationRelativeTo(null);
}
public class Main {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
// 創建一個JFrame作為對話框的父窗口
JFrame frame = new JFrame("自定義對話框示例");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 200);
frame.setVisible(true);
// 創建自定義對話框并顯示
CustomDialog dialog = new CustomDialog(frame, "輸入您的名字");
dialog.setVisible(true);
}
});
}
}
運行上述代碼,將會顯示一個包含文本字段和確認按鈕的自定義對話框。用戶可以在文本字段中輸入名字,然后點擊確認按鈕。點擊確認按鈕后,控制臺將輸出用戶輸入的名字。