作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当按下 JFrame
中的按钮时,我尝试打开 JDialog
,并且该对话框应包含 JTable
。
我应该在哪里创建对话框(在框架内还是应该创建一个新类)?
最佳答案
如果您的对话框相当复杂,请为其使用新类。做类似的事情
public class OtherDialog extends JDialog {
// ...
public OtherDialog(){
// build dialog
}
}
并在 JFrame-Button-Actionhandler 中打开它,如下所示:
protected void btnOpenotherdialogActionPerformed(ActionEvent e) {
try {
OtherDialog dialog = new OtherDialog();
dialog.setModalityType(ModalityType.APPLICATION_MODAL);
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
dialog.setVisible(true);
} catch (Exception ex) {
ex.printStackTrace();
}
}
关于java - 单击按钮即可打开 JDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47754997/
这实际上是我问的问题的一部分here ,该问题没有得到答复,最终被标记为重复。 问题:我只需使用 @Autowired 注释即可使用 JavaMailSender。我没有通过任何配置类公开它。 @Co
我是一名优秀的程序员,十分优秀!