質問編集履歴
1
fxmlの情報を載せ忘れました。
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -248,6 +248,38 @@
|
|
|
248
248
|
(略)
|
|
249
249
|
・
|
|
250
250
|
```
|
|
251
|
+
```fxml
|
|
252
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
253
|
+
|
|
254
|
+
<?import java.lang.*?>
|
|
255
|
+
<?import java.util.*?>
|
|
256
|
+
<?import javafx.scene.control.*?>
|
|
257
|
+
<?import javafx.scene.layout.*?>
|
|
258
|
+
<?import javafx.scene.paint.*?>
|
|
259
|
+
|
|
260
|
+
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="976.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2" fx:controller="fxdiary.NewTableForm">
|
|
261
|
+
<children>
|
|
262
|
+
<TableView fx:id="HistoryTable" layoutX="0.0" layoutY="0.0" prefHeight="400.0" prefWidth="976.0">
|
|
263
|
+
<columns>
|
|
264
|
+
<TableColumn id="Ticket" prefWidth="75.0" text="チケット番号" fx:id="TicketCol" />
|
|
265
|
+
<TableColumn id="OrderTime" prefWidth="75.0" text="注文時間" fx:id="OrderTimeCol" />
|
|
266
|
+
<TableColumn id="OrderPrice" prefWidth="75.0" text="注文価格" fx:id="OrderPriceCol" />
|
|
267
|
+
<TableColumn id="Type" prefWidth="75.0" text="注文タイプ" fx:id="TypeCol" />
|
|
268
|
+
<TableColumn id="Lots" prefWidth="75.0" text="ロット数" fx:id="LotsCol" />
|
|
269
|
+
<TableColumn id="Pair" prefWidth="75.0" text="通貨ペア" fx:id="PairCol" />
|
|
270
|
+
<TableColumn id="StopLoss" prefWidth="75.0" text="ストップロス" fx:id="StopLossCol" />
|
|
271
|
+
<TableColumn id="Limit" prefWidth="75.0" text="リミット" fx:id="LimitCol" />
|
|
272
|
+
<TableColumn id="CloseTime" prefWidth="75.0" text="決済時間" fx:id="CloseTimeCol" />
|
|
273
|
+
<TableColumn id="ClosePrice" prefWidth="75.0" text="決済価格" fx:id="ClosePriceCol" />
|
|
274
|
+
<TableColumn id="Fee" prefWidth="75.0" text="手数料" fx:id="FeeCol" />
|
|
275
|
+
<TableColumn id="Swap" prefWidth="75.0" text="スワップ" fx:id="SwapCol" />
|
|
276
|
+
<TableColumn id="PL" prefWidth="75.0" text="損益" fx:id="PLCol" />
|
|
277
|
+
</columns>
|
|
278
|
+
</TableView>
|
|
279
|
+
</children>
|
|
280
|
+
</AnchorPane>
|
|
281
|
+
```
|
|
282
|
+
|
|
251
283
|
### 試したこと
|
|
252
284
|
|
|
253
285
|
String[] Data はプリントして中に値が入っている事は確認してます。
|