3.2.15StackPaneについて
これまでのペインは、基本的に組み込まれたコントロール類を一度に全て表示するようになっていました。が、そうでないペインもあります。「StackPane」は、組み込まれたコントロールをスタック(積み重ね)してまとめ、一番最後に追加したものだけを表示します。
<StackPane prefHeight="150.0" prefWidth="300.0" fx:id="pane"
xmlns="http://javafx.com/javafx/8"
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="jp.tuyano.eclipsebook.WindowController">
<Button text="Bye!" prefWidth="100" prefHeight="50"
onAction="#buttonAction" />
<Button text="Welcome." prefWidth="100" prefHeight="50"
onAction="#buttonAction" />
<Button text="Hello." prefWidth="100" prefHeight="50"
onAction="#buttonAction" />
</StackPane>
この記事は会員限定です。会員登録をすると続きをお読みいただけます。
ログイン / 新規登録