Init student's Center,ChangePassword,Chat,MainWindow

This commit is contained in:
GGB
2022-06-12 18:32:06 +08:00
parent 225d69d6ef
commit 4149fb0439
5 changed files with 123 additions and 115 deletions

View File

@@ -33,11 +33,13 @@ public class MainWindow{
@Override
public void actionPerformed(ActionEvent e) {
if(check()){
LOGGER.info("new Center");
new Center().start(stuNoText.getText());
LOGGER.info("center.start");
Center center = new Center(stuNoText.getText());
center.start();
frame.dispose();
}
else {
JOptionPane.showMessageDialog(null,"密码错误");
}
}
});
}