parent
2fdb52631e
commit
a4e6d02e57
@ -0,0 +1,18 @@
|
||||
package flowershop.view;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
import flowershop.model.User;
|
||||
|
||||
public class MainApp {
|
||||
//用户登录成功后,需要保存的用户信息
|
||||
public static User user;
|
||||
|
||||
//Session(会话)
|
||||
public static void main(String[] args) {
|
||||
//TODO 调用LoginFrame
|
||||
LoginFrame loginFrame = new LoginFrame("用户登录",400,250);
|
||||
loginFrame.setVisible(true);
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue