29 lines
666 B
Java
29 lines
666 B
Java
|
|
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();
|
||
|
|
}
|
||
|
|
}
|