我在将GUI组件放入applet时遇到了麻烦。我正在寻找一种使用绝对坐标和尺寸放置它的方法。 这就是我所做的:
public class app extends JApplet {
public void init() {
setSize(450,450);
try {
javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
createGUI();
}
});
} catch (Exception e) {
System.err.println("Creation of swing components not finished");
}
}
public void createGUI() {
JMenuBar menubar = new JMenuBar();
JMenu menuFile = new JMenu("File");
JMenuItem openItem = new JMenuItem("Open");
menuFile.add(openItem);
menubar.add(menuFile);
setJMenuBar(menubar);
app_buttons ab = new app_buttons();
add(ab.button1);
add(ab.button2);
add(ab.button3);
}
}
public class app_buttons {
public JButton button1;
public JButton button2;
public JButton button3;
public apptextbox() {
button1 = new JButton("1");
button1.setBounds(20,20,20,20);
button2 = new JButton("2");
button2.setBounds(60,60,20,20);
button3 = new JButton("3");
button3.setBounds(90,90,20,20);
}
}
我无法弄清楚如何做到这一点,要么组件没有显示,要么它们适合整个applet区域。我想为我的所有按钮,textareas等指定它们的确切尺寸以及放置它们的确切位置。我看过网上的教程,但它不起作用,组件不会显示。
我不希望按钮,textareas等调整大小。一切都是静止的,我指出它们。例如,在创建大小为(15,35)的JTextArea时;它似乎并不重要,因为无论如何它都会调整大小。
由于
答案 0 :(得分:1)
使用
setLayout(null);
代表init()
。