资源简介
java学生信息管理系统java学生信息管理系统java学生信息管理系统java学生信息管理系

代码片段和文件信息
package studentsystem;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
/**
* title:
* Description:
* Copyright: Copyright (c) 2006
* Company:
* @download by http://www.codefans.net
* @author not attributable
* @version 1.0
*/
public class about extends JDialog {
JPanel panel1 = new JPanel();
ImageIcon icon=new ImageIcon(“xuan.jpg“);//设置背景图片
JLabel jLabel1 = new JLabel(icon);
JButton sure = new JButton();
public about(frame frame String title boolean modal) {
super(frame title true);
try {
jbInit();
pack();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
public about() {
this(null ““ true);
}
private void jbInit() throws Exception {
jLabel1.setText(““);
jLabel1.setBounds(new Rectangle(5 5 392 250));
panel1.setBounds(new Rectangle(0 299 1 1));
panel1.setLayout(null);
jLabel1.setText(““);
jLabel1.setBounds(new Rectangle(-43 0 414 245));
sure.setBounds(new Rectangle(109 243 79 29));
sure.setFont(new java.awt.Font(“Dialog“ 0 15));
sure.setText(“确 定“);
jLabel1.setToolTipText(“leeyingzhang制作!“);
sure.addActionListener(new about_sure_actionAdapter(this));
this.settitle(“呵呵!“);
this.getContentPane().add(panel1 null);
this.getContentPane().add(sure null);
this.getContentPane().add(jLabel1 null);
this.setBounds(200200330310);
this.getContentPane().setLayout(null);
this.setVisible(true);
}
void sure_actionPerformed(ActionEvent e) {
this.dispose();
}
}
class about_sure_actionAdapter implements java.awt.event.ActionListener {
about adaptee;
about_sure_actionAdapter(about adaptee) {
this.adaptee = adaptee;
}
public void actionPerformed(ActionEvent e) {
adaptee.sure_actionPerformed(e);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
19116317 59
- 上一篇:jsp商场会员管理系统
- 下一篇:Spads 公式解析系统
相关资源
- 微博系统(Java源码,servlet+jsp),适
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
评论
共有 条评论