比这篇新的文章:
BorderLayout小练习
比这篇旧的文章: Your Ride Is Here
作者: firnice, 点击463次, 评论(0), 收藏者(0), , 打分:
所有评论,共0条:( 我也来说两句)
比这篇旧的文章: Your Ride Is Here
FLowLayout小练习
语言: Java, 标签: 练习 2009/02/11发布 1年前更新作者: firnice, 点击463次, 评论(0), 收藏者(0), , 打分:
Java语言: FLowLayout小练习
01 import java.awt.*;//FLowLayout小练习
02 public class TestFLowLayout {
03 public static void main(String[] args) {
04 Frame f = new Frame("Flow Layout");
05 Button button1 = new Button("OK");
06 Button button2 = new Button("Open");
07 Button button3 = new Button("Close");
08 f.setLayout(new FlowLayout());
09 f.add(button1);
10 f.add(button2);
11 f.add(button3);
12 f.setSize(100,100);
13 f.setVisible(true);
14 }
15
16 }
02 public class TestFLowLayout {
03 public static void main(String[] args) {
04 Frame f = new Frame("Flow Layout");
05 Button button1 = new Button("OK");
06 Button button2 = new Button("Open");
07 Button button3 = new Button("Close");
08 f.setLayout(new FlowLayout());
09 f.add(button1);
10 f.add(button2);
11 f.add(button3);
12 f.setSize(100,100);
13 f.setVisible(true);
14 }
15
16 }
所有评论,共0条:( 我也来说两句)
代码
