我可以JOptionPane.showConfirmDialog
用于展示JInternalFrame
吗?
我尝试了以下代码:
OPD.Registration opdRegister = new OPD.Registration();
//OPD.Registration is extending JInternalFrame
int ns=JOptionPane.showConfirmDialog(null, opdRegister, "Billing", JOptionPane.OK_CANCEL_OPTION,JOptionPane.PLAIN_MESSAGE);
// i am trying to call opdregister in this Confirm Dialog Box.
通过使用上面显示对话框的代码,JInternalFrame
但它不能正确显示。它只显示标题栏。其他数据从JInternalFrame
.
如何增加此对话框的大小?