質問編集履歴

1

fxmlの情報を載せ忘れました。

2019/08/28 18:56

投稿

t-_.
t-_.

スコア55

test CHANGED
File without changes
test CHANGED
@@ -498,6 +498,70 @@
498
498
 
499
499
  ```
500
500
 
501
+ ```fxml
502
+
503
+ <?xml version="1.0" encoding="UTF-8"?>
504
+
505
+
506
+
507
+ <?import java.lang.*?>
508
+
509
+ <?import java.util.*?>
510
+
511
+ <?import javafx.scene.control.*?>
512
+
513
+ <?import javafx.scene.layout.*?>
514
+
515
+ <?import javafx.scene.paint.*?>
516
+
517
+
518
+
519
+ <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">
520
+
521
+ <children>
522
+
523
+ <TableView fx:id="HistoryTable" layoutX="0.0" layoutY="0.0" prefHeight="400.0" prefWidth="976.0">
524
+
525
+ <columns>
526
+
527
+ <TableColumn id="Ticket" prefWidth="75.0" text="チケット番号" fx:id="TicketCol" />
528
+
529
+ <TableColumn id="OrderTime" prefWidth="75.0" text="注文時間" fx:id="OrderTimeCol" />
530
+
531
+ <TableColumn id="OrderPrice" prefWidth="75.0" text="注文価格" fx:id="OrderPriceCol" />
532
+
533
+ <TableColumn id="Type" prefWidth="75.0" text="注文タイプ" fx:id="TypeCol" />
534
+
535
+ <TableColumn id="Lots" prefWidth="75.0" text="ロット数" fx:id="LotsCol" />
536
+
537
+ <TableColumn id="Pair" prefWidth="75.0" text="通貨ペア" fx:id="PairCol" />
538
+
539
+ <TableColumn id="StopLoss" prefWidth="75.0" text="ストップロス" fx:id="StopLossCol" />
540
+
541
+ <TableColumn id="Limit" prefWidth="75.0" text="リミット" fx:id="LimitCol" />
542
+
543
+ <TableColumn id="CloseTime" prefWidth="75.0" text="決済時間" fx:id="CloseTimeCol" />
544
+
545
+ <TableColumn id="ClosePrice" prefWidth="75.0" text="決済価格" fx:id="ClosePriceCol" />
546
+
547
+ <TableColumn id="Fee" prefWidth="75.0" text="手数料" fx:id="FeeCol" />
548
+
549
+ <TableColumn id="Swap" prefWidth="75.0" text="スワップ" fx:id="SwapCol" />
550
+
551
+ <TableColumn id="PL" prefWidth="75.0" text="損益" fx:id="PLCol" />
552
+
553
+ </columns>
554
+
555
+ </TableView>
556
+
557
+ </children>
558
+
559
+ </AnchorPane>
560
+
561
+ ```
562
+
563
+
564
+
501
565
  ### 試したこと
502
566
 
503
567