これは非常に基本的なコードですが、理解するには少し助けが必要です..
ボタンがあり、パネルの東側に配置したい..任意の提案..
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のようになります
どんな助けでも大歓迎ですありがとう!