博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用标签、按钮和文本框编辑一个个人信息简介页面
阅读量:5142 次
发布时间:2019-06-13

本文共 1408 字,大约阅读时间需要 4 分钟。

import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Myself extends Frame {
JButton Exit; public Myself() {
super("myself"); setSize(250,300); this.setLocation(300, 240); this.setBackground(Color.green); this.setLayout(new FlowLayout()); this.add(new Label("name")); this.add(new TextField("哆啦",25)); this.add(new Label("Stud_Number")); this.add(new TextField("19903311098",25)); this.add(new Label("sex")); this.add(new TextField("woman",25)); this.add(new Label("political status")); this.add(new TextField("Legue member",25)); Exit=new JButton("EXIT"); this.add(Exit); this.addWindowListener(new WinClose()); this.setVisible(true); } public static void main(String[] args) {
new Myself(); //实例化 } } class WinClose implements WindowListener {
public void windowClosing(WindowEvent ev) {
ev.getWindow().dispose(); } //关闭窗口方法 public void windowOpened(WindowEvent ev) {} public void windowClosed(WindowEvent ev) {} public void windowIconified(WindowEvent ev) {} public void windowDeiconified(WindowEvent ev) {} public void windowActivated(WindowEvent ev) {} public void windowDeactivated(WindowEvent ev) {} }

转载于:https://www.cnblogs.com/gt33/p/9135528.html

你可能感兴趣的文章
HashPump用法
查看>>
cuda基础
查看>>
Vue安装准备工作
查看>>
oracle 创建暂时表
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>
CSS属性值currentColor
查看>>
java可重入锁reentrantlock
查看>>
浅谈卷积神经网络及matlab实现
查看>>
解决ajax请求cors跨域问题
查看>>
《收获,不止Oracle》pdf
查看>>
LinkedList<E>源码分析
查看>>
Real-Time Rendering 笔记
查看>>
如何理解HTML结构的语义化
查看>>
Activity之间的跳转:
查看>>
实验四2
查看>>
Android现学现用第十一天
查看>>
多路复用
查看>>