嘿,我的课程要求我做一些我不熟悉的applet,我试图将我的按钮放在屏幕上的某个位置。我可以将按钮的大小设置为我喜欢的但不是x和y位置。
public void init() {
button1 = new Button ("HIT TARGET");
button1.setPreferredSize(new Dimension(100, 100));
add(button1);
button1.setLocation(300, 300);
button1.addActionListener(this);
}
我试图搜索我的课程文档并对此进行谷歌搜索,但我还没找到任何内容。
答案 0 :(得分:0)
您可以使用 setBounds()
方法并将 setLayout(null)
方法设置为 null。
也可以参考我的代码了解使用方法:
public class Ass extends Applet
{
String msb="";
Button btn;
public void init()
{
btn=new Button("BUTTON");
setLayout(null);
btn.setBounds(30,60,100,20);
add(btn);
}
}