以下のJavaコードを使用してPHPコードを書くのを手伝ってください。
私はどこかを襲ったので、たくさんの質問があります:
java JFrame、BorderLayout、setJMenuBar、setVisibleをphpで書く方法。
// init the frame
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new BorderLayout());
this.setSize(600, 400);
// set MenuBar
this.setJMenuBar(getApplicationMenuBar());
// set ProgressBar
this.add(getApplicationProgressBar(), BorderLayout.SOUTH);
// set InfoPane
this.add(getInfoPane(), BorderLayout.WEST);
// set frame to visible
this.setVisible(true);
これについて私を助けてください。
前もって感謝します。