在Java中,您可以使用Swing庫中的JDialog類來創建一個對話框。要在其他組件(如按鈕)上觸發對話框的顯示,您需要為按鈕添加一個ActionListener。以下是一個簡單的示例,演示了如何在Java Swing應用程序中集成JDialog與其他組件:
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class MainFrame extends JFrame {
public MainFrame() {
setTitle("JDialog Example");
setSize(400, 300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
}
}
public class CustomDialog extends JDialog {
public CustomDialog(JFrame parent) {
super(parent, "Custom Dialog", true);
setSize(200, 100);
setLocationRelativeTo(parent);
JLabel label = new JLabel("This is a custom dialog.");
JButton closeButton = new JButton("Close");
closeButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
dispose();
}
});
JPanel panel = new JPanel();
panel.add(label);
panel.add(closeButton);
getContentPane().add(panel);
}
}
public class MainFrame extends JFrame {
// ... (其他代碼)
public MainFrame() {
// ... (其他代碼)
JButton showDialogButton = new JButton("Show Dialog");
showDialogButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
CustomDialog customDialog = new CustomDialog(MainFrame.this);
customDialog.setVisible(true);
}
});
// ... (其他代碼)
}
}
現在,當您運行主窗口類并單擊“Show Dialog”按鈕時,將顯示一個自定義對話框。點擊對話框中的“Close”按鈕將關閉對話框。