質問編集履歴
3
jdkバージョン追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -181,3 +181,7 @@
|
|
181
181
|
}
|
182
182
|
|
183
183
|
```
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
JavaSE 11を使用しております。
|
2
コントローラ追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -165,3 +165,19 @@
|
|
165
165
|
なにかコードが書いてあるものはこれで全てです...
|
166
166
|
|
167
167
|
application.cssは白紙でした
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
```SampleController
|
172
|
+
|
173
|
+
package application;
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
public class SampleController {
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
```
|
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -121,3 +121,47 @@
|
|
121
121
|
Caused by: java.lang.NullPointerException: Location is required.
|
122
122
|
|
123
123
|
```
|
124
|
+
|
125
|
+
```Sample
|
126
|
+
|
127
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
<?import javafx.scene.control.Label?>
|
132
|
+
|
133
|
+
<?import javafx.scene.layout.AnchorPane?>
|
134
|
+
|
135
|
+
<?import javafx.scene.text.Font?>
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<AnchorPane prefHeight="400.0" prefWidth="400.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="application.SampleController">
|
142
|
+
|
143
|
+
<children>
|
144
|
+
|
145
|
+
<Label layoutY="100.0" prefHeight="200.0" prefWidth="400.0" text=" Hello World" textAlignment="CENTER">
|
146
|
+
|
147
|
+
<font>
|
148
|
+
|
149
|
+
<Font size="75.0" />
|
150
|
+
|
151
|
+
</font>
|
152
|
+
|
153
|
+
</Label>
|
154
|
+
|
155
|
+
</children>
|
156
|
+
|
157
|
+
</AnchorPane>
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
![プロジェクトの内容です](37b4b353af897a0043edd590dbd958d9.png)
|
164
|
+
|
165
|
+
なにかコードが書いてあるものはこれで全てです...
|
166
|
+
|
167
|
+
application.cssは白紙でした
|