CoreJava/exp11/AccountDemo.java

19 lines
313 B
Java
Raw Normal View History

2024-05-09 09:10:51 +08:00
package exp11;
2024-05-15 20:49:31 +08:00
import java.awt.*;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
2024-05-09 09:10:51 +08:00
import javax.swing.*;
public class AccountDemo {
2024-05-15 20:49:31 +08:00
public static void main(String[] args) {
JFrame register = LoginFrame.creatLonginFrame();
register.setVisible(true);
}
2024-05-09 09:10:51 +08:00
}