Java 我可以为dispay JInternalFrame使用JOptionPane.showConfirmDialog吗?

Java 我可以为dispay JInternalFrame使用JOptionPane.showConfirmDialog吗?,java,swing,frame,jinternalframe,Java,Swing,Frame,Jinternalframe,我可以使用JOptionPane.showConfirmDialog来显示JInternalFrame 我尝试了以下代码: OPD.Registration opdRegister = new OPD.Registration(); //OPD.Registration is extending JInternalFrame int ns=JOptionPane.showConfirmDialog(null, opdRegister, "Billing", JOptionPane.O

我可以使用
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
中剪切其他数据


如何增加此对话框的大小?

是的,尽管
JInternalFrame
是用于一个应用程序中。如果您只看到标题栏,请验证您的内容是否具有标题栏和内部框架,如图所示