这是非常基本的代码,但我只需要一些帮助来理解..
我有一个按钮,我想把它放在面板的东侧..任何建议..
public class ButtonText {
public static void main(String[] args) {
Frame frame=new Frame("Button Frame");
Button button = new Button("Submit");
frame.setLayout(new FlowLayout());
frame.add(button, BorderLayout.EAST);
frame.setSize(200,100);
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
}
看起来像这样http://imgur.com/0GYso
任何帮助将不胜感激,谢谢!