/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package myjavafxapplication;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
/**
*
* @author liulufei
*/
public class MyJavaFXApplication extends Application {
@Override
public void start(Stage primaryStage) {
//新建一个按钮叫button 1
Button btn = new Button("Button 1");
//新建一个200x200的场景,场景中放置刚才创建的按钮,
Scene scene = new Scene(btn, 200, 200);
//窗口中设置刚才创建的场景
primaryStage.setScene(scene);
//设置窗口的标题
primaryStage.setTitle("First Window");
//显示窗口
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
//main方法可以没有, 如果没有自动执行launch()方法,
//可以看出这里并没有调用start()方法, 它是被程序内部所调用的.
}
}
javaFX我的第一个窗口程序
最新推荐文章于 2024-06-16 21:12:14 发布