JAVAでScene BuilderでGUI作成をしているのですが、下記のソースコードの<Tab text=" File " />のところにさらにメニューボタンの階層を入れたいのですがやり方が分からず、親切な方どうすればいいのか教えていただけないでしょうか。
<?xml version="1.0" encoding="UTF-8"?> <?import javafx.scene.control.*?> <?import javafx.scene.layout.*?> <GridPane alignment="center" hgap="10" vgap="10" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller"> <columnConstraints> <ColumnConstraints /> </columnConstraints> <rowConstraints> <RowConstraints /> </rowConstraints> <children> <AnchorPane prefHeight="768.0" prefWidth="1366.0"> <children> <TabPane prefHeight="59.0" prefWidth="1374.0" tabClosingPolicy="UNAVAILABLE"> <tabs> <Tab text="Machine Learning"> <content> <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0"> <children> <TabPane prefHeight="100.0" prefWidth="1374.0" tabClosingPolicy="UNAVAILABLE"> <tabs> <Tab text="Control " /> <Tab text=" File " /> <Tab text=" Home " /> <Tab text=" Ajust " /> <Tab text=" Proccess " /> <Tab text=" Count/Sze " /> <Tab text=" Measure " /> <Tab text=" 3DMeasure " /> <Tab text=" 3DAnimetion " /> <Tab text=" Apri " /> </tabs> </TabPane> </children></AnchorPane> </content> </Tab> <Tab text="Deep Learning"> <content> <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" /> </content> </Tab> </tabs> </TabPane> </children></AnchorPane> </children> </GridPane>回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/01 02:34
2020/03/03 12:54