比这篇新的文章:
多个窗口小练习
比这篇旧的文章: 网络小练习-UDP
作者: firnice, 点击479次, 评论(0), 收藏者(0), , 打分:
所有评论,共0条:( 我也来说两句)
比这篇旧的文章: 网络小练习-UDP
界面小练习
语言: Java, 标签: 练习 2009/02/10发布 1年前更新作者: firnice, 点击479次, 评论(0), 收藏者(0), , 打分:
Java语言: 界面小练习
01 import java.awt.*;
02 public class TestFrame {//界面
03 public static void main(String[] args){
04 Frame f = new Frame("My First Frame");
05 f.setLocation(300,200);
06 f.setSize(300,200);
07 f.setBackground(Color.white);
08 f.setVisible(true);
09 }
10 }
02 public class TestFrame {//界面
03 public static void main(String[] args){
04 Frame f = new Frame("My First Frame");
05 f.setLocation(300,200);
06 f.setSize(300,200);
07 f.setBackground(Color.white);
08 f.setVisible(true);
09 }
10 }
所有评论,共0条:( 我也来说两句)
代码
