求用JAVA桌面编程编写小程序

1.用AWT编程实现图示效果:... 1.用AWT编程实现图示效果: 展开
 我来答
wwxjse
2013-01-09 · TA获得超过215个赞
知道小有建树答主
回答量:274
采纳率:100%
帮助的人:164万
展开全部
package t;
import java.awt.Button;
import java.awt.Frame;
import java.awt.Label;
import java.awt.Panel;
import java.awt.TextField;
public class UI extends Frame {
public UI() {
super("登录界面");
Panel p = new Panel();
p.setLayout(null);
Label l1=new Label("用户名");
l1.setBounds(20,20, 100,30);
Label l2=new Label("密码");
l2.setBounds(20,55, 100,30);
TextField t1=new TextField();
t1.setBounds(120,20, 100,20);
TextField t2=new TextField();
t2.setBounds(120,55, 100,20);
Button enter = new Button("确定");
enter.setBounds(100,90, 50,30);
Button help = new Button("取消");
help.setBounds(160,90, 50,30);
p.add(l1);
p.add(l2);
p.add(t1);
p.add(t2);
p.add(enter);
p.add(help);
p.setBounds(0,0,200,200);
this.add(p);
this.setBounds(100,100,300,200);
this.setVisible(true);
}
public static void main(String args[]) {
new UI();
}
}
bd9006
2013-01-07 · TA获得超过2.5万个赞
知道大有可为答主
回答量:4.8万
采纳率:63%
帮助的人:1.6亿
展开全部
不错啊,继续努力
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式