online-exam-ui/src/main/java/com/zhangmeng/online/exam/ui/OnlineExamApplication.java

29 lines
666 B
Java
Raw Normal View History

2025-03-04 10:04:21 +00:00
package com.zhangmeng.online.exam.ui;
import com.zhangmeng.online.exam.ui.admin.LoginPage;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
public class OnlineExamApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
Scene scene = new Scene(new LoginPage());
stage.setScene(scene);
stage.setResizable(false);
stage.setTitle("在线考试系统");
stage.show();
}
public static void main(String[] args) {
launch();
}
}