質問編集履歴

1

変更後のコードの掲載誤りのため再編集

2015/10/14 02:40

投稿

XCUBE
XCUBE

スコア101

test CHANGED
File without changes
test CHANGED
@@ -102,40 +102,50 @@
102
102
 
103
103
  <?import javafx.scene.control.*?>
104
104
 
105
+ <?import javafx.scene.layout.*?>
105
106
 
106
107
 
107
108
 
108
109
 
109
- <SplitPane dividerPositions="0.5" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
110
110
 
111
- <items>
111
+ <HBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
112
112
 
113
+ <children>
114
+
113
- <SplitPane dividerPositions="0.5" orientation="VERTICAL" prefHeight="200.0" prefWidth="160.0">
115
+ <SplitPane dividerPositions="0.5" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0">
114
116
 
115
117
  <items>
116
118
 
117
- <ListView prefHeight="200.0" prefWidth="200.0" />
119
+ <SplitPane dividerPositions="0.5" orientation="VERTICAL" prefHeight="200.0" prefWidth="160.0">
118
120
 
119
- <TableView prefHeight="200.0" prefWidth="200.0">
121
+ <items>
120
122
 
121
- <columns>
123
+ <ListView prefHeight="200.0" prefWidth="200.0" />
122
124
 
123
- <TableColumn prefWidth="75.0" text="C1" />
125
+ <TableView prefHeight="200.0" prefWidth="200.0">
124
126
 
125
- <TableColumn prefWidth="75.0" text="C2" />
127
+ <columns>
126
128
 
127
- </columns>
129
+ <TableColumn prefWidth="75.0" text="C1" />
128
130
 
131
+ <TableColumn prefWidth="75.0" text="C2" />
132
+
133
+ </columns>
134
+
129
- </TableView>
135
+ </TableView>
136
+
137
+ </items>
138
+
139
+ </SplitPane>
140
+
141
+ <ScrollPane prefHeight="200.0" prefWidth="200.0" />
130
142
 
131
143
  </items>
132
144
 
133
145
  </SplitPane>
134
146
 
135
- <ScrollPane prefHeight="200.0" prefWidth="200.0" />
147
+ </children>
136
148
 
137
- </items>
149
+ </HBox>
138
-
139
- </SplitPane>
140
150
 
141
151
  ```