CoreJava/exp11/AccountDemo.java

11 lines
220 B
Java
Raw Permalink Normal View History

2024-05-09 09:10:51 +08:00
package exp11;
2024-05-15 23:50:53 +08:00
import javax.swing.JFrame;
2024-05-09 09:10:51 +08:00
public class AccountDemo {
2024-05-15 20:49:31 +08:00
public static void main(String[] args) {
2024-05-15 23:50:53 +08:00
JFrame loginFrame = LoginFrame.creatLonginFrame();
loginFrame.setVisible(true);
2024-05-15 20:49:31 +08:00
}
2024-05-09 09:10:51 +08:00
}