我正在尝试创建一个存在于我的小程序中的子框架,它应该绑定到一个 JPanel。我在互联网上找到了这个和那个,但没有任何效果。我认为在这个过程中出了点问题,该死的东西被隐藏了。有人可以在这个问题上给我一些帮助吗?
我的源代码如下...
public class EnableFrame {
public void init() {
EnableFrame theframe = new EnableFrame();
theframe.setSize(550, 300);
theframe.setVisible(true);
}
public EnableFrame() {
JPanel containall = new JPanel();
JInternalFrame iframe = new JInternalFrame("New Frame",true,true);
iframe.setBounds(10,10,150,150);
iframe.getContentPane().add(containall);
iframe.show(true);
}
}
提前致谢
-罗兰