该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
package SystemMGR;
import javax.swing.*;
import MainFrame.MainWindow;
import java.awt.*;
public class pwdchange extends JFrame{
private JPasswordField passwordField;
private JPasswordField passwordField_1;
public pwdchange(MainWindow mainFrame){
getContentPane().setLayout(null);
JLabel lblNewLabel = new JLabel("\u65B0\u5BC6\u7801 \uFF1A");
lblNewLabel.setFont(new Font("宋体", Font.PLAIN, 21));
lblNewLabel.setBounds(94, 42, 115, 25);
getContentPane().add(lblNewLabel);
JLabel label = new JLabel("\u518D\u6B21\u8F93\u5165\uFF1A");
label.setFont(new Font("宋体", Font.PLAIN, 21));
label.setBounds(94, 93, 105, 25);
getContentPane().add(label);
JButton btnNewButton = new JButton("\u786E\u8BA4\u4FEE\u6539");
btnNewButton.setFont(new Font("宋体", Font.PLAIN, 20));
btnNewButton.setBounds(155, 158, 137, 44);
getContentPane().add(btnNewButton);
passwordField = new JPasswordField();
passwordField.setBounds(201, 42, 179, 25);
getContentPane().add(passwordField);
passwordField_1 = new JPasswordField();
passwordField_1.setBounds(205, 93, 179, 25);
getContentPane().add(passwordField_1);
JFrame studentinfosearchframe = new JFrame();
}
}