如何创建可用作内部对话框的自定义模式JDialog?用于FullscreenExclusiveMode。
我有一个充满巨大按钮的JScrollPane(带有一个巨大的滚动条),如下所示:
+----------------------+------+
| FOO | /\ |
|______________________+------+
| |______|
| BAR | |
|______________________| == |
| |______|
| BIZ | |
+______________________+------+
| | \/ |
|----------------------+------+
我需要用户使用巨型滚动条滚动并点按某个特定按钮来选择它并关闭对话框。该对话框处于全屏独占模式。关闭按钮需要被禁用,它需要没有正常或取消按钮,无论他们点击哪个按钮需要更新值,然后在对话框上调用frame.dispose()。
现在我正在使用内部框架,但框架没有弹出其他所有内容,因为我没有使用JDesktop。我也尝试过JDialog,但它最小化了应用程序。
JOptionPane.showInternalDialog()有效,但如何以相同的方式构建自己的内部对话框以便显示它们?如果我制作一个内部框架,然后将其添加到一个组件中,它就位于该组件内,而不是在所有内容之上。
编辑:查看这些类并尝试弹出工厂,但弹出窗口似乎无法在全屏模式下可靠地工作。
编辑:尝试JOptionPane.createInternalFrame()这里是我正在使用的演示,但它似乎还没有工作。
public class FullscreenDialog {
public static final void main(final String[] args) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());//uses os window manager
JPanel panel = new JPanel();
panel.setPreferredSize(new Dimension(800,600));
final JLabel label = new JLabel("Something to say.");
panel.add(label);
final JFrame fullscreenFrame = new JFrame();
fullscreenFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
fullscreenFrame.setUndecorated(true);//To remove the bars around the frame.
fullscreenFrame.setResizable(false);//resizability causes unsafe operations.
fullscreenFrame.setContentPane(panel);
fullscreenFrame.validate();
GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().setFullScreenWindow(fullscreenFrame);//actually applies the fullscreen.
final JOptionPane optionPane = new JOptionPane();
optionPane.add(new JLabel("Some alert"));
final JButton button = new JButton();
button.setText("Press me.");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
label.setText("worked");
optionPane.setValue(button);
}
});
JInternalFrame frame = optionPane.createInternalFrame(panel, "Internal Dialog");
frame.setVisible(true);
}
}
答案 0 :(得分:3)
message
构造函数的JOptionPane
参数可以是Component
以及字符串,例如它可能是你的JScrollPane
。
要从选项窗格中删除标准按钮,请使用空数组调用setOptions(Object[])
。
答案 1 :(得分:2)
JOptionPane.showXXXDialog(...)允许在创建自定义内部对话框时进行大量自定义。
答案 2 :(得分:1)
试试这个..
.
.
.
final JOptionPane optionPane = new JOptionPane();
optionPane.add(new JLabel("Some alert"));
final JButton button = new JButton();
button.setText("Press me.");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
label.setText("worked");
fullscreenFrame.invalidate();
fullscreenFrame.repaint();
optionPane.setValue(button);
}
});
JInternalFrame frame = optionPane.createInternalFrame(panel, "Internal Dialog");
frame.getContentPane().removeAll();
JPanel pnl = new JPanel(new BorderLayout());
pnl.add( button, BorderLayout.SOUTH );
pnl.add( new JScrollBar(), BorderLayout.CENTER );
frame.getContentPane().add( pnl );
frame.setVisible(true);