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.
21 lines
581 B
21 lines
581 B
import javafx.application.Application;
|
|
import javafx.fxml.FXMLLoader;
|
|
import javafx.scene.Scene;
|
|
import javafx.stage.Stage;
|
|
|
|
public class Calculator extends Application {
|
|
|
|
@Override
|
|
public void start(Stage primaryStage) throws Exception {
|
|
FXMLLoader loader = new FXMLLoader(getClass().getResource("Calculator.fxml"));
|
|
Scene scene = new Scene(loader.load());
|
|
primaryStage.setTitle("简易计算器");
|
|
primaryStage.setScene(scene);
|
|
primaryStage.show();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
launch(args);
|
|
}
|
|
}
|