- Swing 程式設計示例
- 示例 - 首頁
- 示例 - 環境設定
- 示例 - 邊框
- 示例 - 按鈕
- 示例 - 複選框
- 示例 - 組合框
- 示例 - 顏色選擇器
- 示例 - 對話方塊
- 示例 - 編輯器窗格
- 示例 - 檔案選擇器
- 示例 - 格式化文字域
- 示例 - 框架
- 示例 - 列表
- 示例 - 佈局
- 示例 - 選單
- 示例 - 密碼域
- 示例 - 進度條
- 示例 - 滾動窗格
- 示例 - 滑塊
- 示例 - 旋轉器
- 示例 - 表格
- 示例 - 工具欄
- 示例 - 樹
- Swing 有用資源
- Swing - 快速指南
- Swing - 有用資源
- Swing - 討論
Swing 示例 - 顯示非模態對話方塊
以下示例展示瞭如何在基於 Swing 的應用程式中建立一個非模態對話方塊。
我們正在使用以下 API。
JDialog − 建立標準對話方塊。
JDialog.getContentPane() − 獲取對話方塊的內容面板。
示例
import java.awt.BorderLayout;
import java.awt.Container;
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");
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
廣告