⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.java~13~

📁 在个一个诊所系统,实现数据的查询和删除等的操作.
💻 JAVA~13~
字号:
package clinique;

import java.awt.*;

import javax.swing.*;
import java.awt.Rectangle;
import java.awt.Font;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class about extends JPanel {
    String img;
    public about() {
        try {
            jbInit();
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
        this.setLayout(null);
        jLabel1.setFont(new java.awt.Font("宋体", Font.BOLD, 15));
        jLabel1.setText("湖人诊所管理系统1.0");
        jLabel1.setBounds(new Rectangle(244, 48, 190, 32));
        jLabel2.setText("制作人: 杨再明、谭乐、李嘉霖");
        jLabel2.setBounds(new Rectangle(241, 106, 194, 15));
        jLabel3.setText("北大青鸟软件公司");
        jLabel3.setBounds(new Rectangle(283, 225, 119, 15));
        jLabel4.setText("Email:beidaqingniao@163.com");
        jLabel4.setBounds(new Rectangle(241, 152, 169, 15));
        jLabel5.setText("乐山师范学院");
        jLabel5.setBounds(new Rectangle(293, 197, 116, 15));
        jLabel6.setIcon(jiemian);
        jLabel6.setText("jLabel6");
        jLabel6.setBounds(new Rectangle(59, 141, 120, 92));
        this.add(jLabel4);
        this.add(jLabel3);
        this.add(jLabel5);
        this.add(jLabel2);
        this.add(jLabel1);
        this.add(jLabel6);

        img="././classes/clinique/accp.gif";

        ImageIcon jiemian=new ImageIcon(img);
    }

    JLabel jLabel1 = new JLabel();
    JLabel jLabel2 = new JLabel();
    JLabel jLabel3 = new JLabel();
    JLabel jLabel4 = new JLabel();
    JLabel jLabel5 = new JLabel();
    JLabel jLabel6 = new JLabel();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -