FXMLについて
作成中
- 1 :
2 :
3 :
4 :
5 :
6 :
7 :
8 : -
<?import javafx.scene.control.*?> <?import javafx.scene.layout.*?> <HBox> <children> <Label text="FXML" prefWidth="100"/> </children> </HBox>
- 1 :
2 :
3 :
4 :
5 :
6 :
7 :
8 :
9 :
10 :
11 :
12 :
13 :
14 :
15 :
16 :
17 :
18 :
19 :
20 :
21 :
22 :
23 :
24 :
25 :
26 :
27 :
28 :
29 : -
import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Scene; import javafx.scene.layout.HBox; import javafx.stage.Stage; public class JavaFX_FXML extends Application { public static void main(String... args) { Application.launch(args); } @Override public void start(Stage stage) throws Exception { FXMLLoader fxml = new FXMLLoader(getClass().getResource("FXML_SAMPLE.fxml")); HBox root = fxml.load(); stage.setWidth(300); // ウィンドウの横幅 stage.setHeight(300); // ウィンドウの高さ stage.setScene(new Scene(root)); stage.show(); // ウィンドウの表示 } }