- Swing 编程示例
- 示例 - 主页
- 示例 - 环境设置
- 示例 - 边框
- 示例 - 按钮
- 示例 - 复选框
- 示例 - 组合框
- 示例 - 颜色选择器
- 示例 - 对话框
- 示例 - 编辑器窗格
- 示例 - 文件选择器
- 示例 - 格式化文本字段
- 示例 - 框架
- 示例 - 列表
- 示例 - 布局
- 示例 - 菜单
- 示例 - 密码字段
- 示例 - 进度条
- 示例 - 滚动窗格
- 示例 - 滑块
- 示例 - 微调器
- 示例 - 表格
- 示例 - 工具栏
- 示例 - 树
- Swing 使用资源
- Swing - 快速指南
- Swing - 使用资源
- Swing - 讨论
Swing 示例 - 显示模态对话框
以下示例展示如何在基于 swing 的应用程序中创建一个模态对话框。
我们使用以下 API。
JDialog − 创建一个标准对话框。
JDialog.getContentPane() − 获取对话框的内容面板。
Dialog.ModalityType.DOCUMENT_MODAL − 将对话框显示为模态对话框。
示例
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Dialog;
import java.awt.FlowLayout;
import java.awt.LayoutManager;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
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 JDialog modelDialog = createDialog(frame);
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
modelDialog.setVisible(true);
}
});
panel.add(button);
frame.getContentPane().add(panel, BorderLayout.CENTER);
}
private static JDialog createDialog(final JFrame frame){
final JDialog modelDialog = new JDialog(frame, "Swing Tester",
Dialog.ModalityType.DOCUMENT_MODAL);
modelDialog.setBounds(132, 132, 300, 200);
Container dialogContainer = modelDialog.getContentPane();
dialogContainer.setLayout(new BorderLayout());
dialogContainer.add(new JLabel(" Welcome to Swing!")
, BorderLayout.CENTER);
JPanel panel1 = new JPanel();
panel1.setLayout(new FlowLayout());
JButton okButton = new JButton("Ok");
okButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
modelDialog.setVisible(false);
}
});
panel1.add(okButton);
dialogContainer.add(panel1, BorderLayout.SOUTH);
return modelDialog;
}
}
输出
swingexamples_dialogs.htm
广告