アプレット内に存在する子フレームを作成しようとしていますが、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);
}
}
前もって感謝します
-ローランド