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

📄 frame_password.java~1~

📁 学生成绩管理系统
💻 JAVA~1~
字号:
package teamwork;

import java.awt.*;

import javax.swing.*;

/**
 * <p>Title: teamwork</p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author yeliang
 * @version 1.0
 */
public class Frame_password extends JFrame {
    public Frame_password() {
        try {
            jbInit();
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
        getContentPane().setLayout(null);
        this.getContentPane().setBackground(new Color(100, 180, 255));
        jPasswordField1.setText("jPasswordField1");
        jPasswordField1.setBounds(new Rectangle(51, 57, 144, 23));
        this.getContentPane().add(jPasswordField1);
        jButton1.setBounds(new Rectangle(53, 92, 140, 25));
        jButton1.setFont(new java.awt.Font("Dialog", Font.PLAIN, 13));
        jButton1.setText("确定");
        this.getContentPane().add(jLabel1);
        this.getContentPane().add(jButton1);
        jLabel1.setFont(new java.awt.Font("宋体", Font.PLAIN, 13));
        jLabel1.setText("请输入管理员口令:");
        jLabel1.setBounds(new Rectangle(52, 32, 134, 16));
    }

    public static void main(String[] args) {
        Frame_password frame_password = new Frame_password();
    }

    JPasswordField jPasswordField1 = new JPasswordField();
    JLabel jLabel1 = new JLabel();
    JButton jButton1 = new JButton();
}

⌨️ 快捷键说明

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