菜鸟询问按扭问题
import java.awt.*;class Xin1 extends Frame
{
Button btnBerad =new Button("更换");
Button btnButter =new Button("确认");
public Xin1(String title){
super(title);
setLayout(new FlowLayout());
add(btnBerad);
add(btnButter);
}
public static void main(String args[])
{
Xin1 f=new Xin1("我已经被加边框了!!!");
f.setSize(300,200);
f.show(true);
}
}
请问这个按扭如何让他出现在指定的位置比如现在是上边吧 我想他出现在左下边要怎么弄高人帮助一下