我正在尝试使用 JInternalFrames 创建一个 Java 小程序。为此,我相信您需要一种或另一种形式的 JFrame。我听说你可以将你的小程序包装在一个 JFrame 中,这是最好的吗?如果你能告诉我应该怎么做,我将不胜感激。TYIA-罗兰
/**
* @(#)rebuiltgui.java
*
* rebuiltgui Applet application
*
* @author
* @version 1.00 2013/1/21
*/
import javax.swing.JInternalFrame;
import javax.swing.JDesktopPane;
import javax.swing.plaf.basic.BasicInternalFrameUI;
import java.awt.event.*;
import java.awt.Desktop;
import javax.swing.*;
import javax.swing.BoxLayout;
import java.awt.*;
import java.applet.*;
public class rebuiltgui extends JApplet {
public void init() {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
private void createAndShowGUI() {
// This is where I would put the internal frames.
}
}