You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
19 lines
413 B
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);
|
|
|
|
}
|
|
}
|