javafx.scene.layout.BorderPane
BorderPane(ポーダーペイン)は、上/下/右/左/中央の5箇所のいづれかから位置を指定してコントロールを配置します。メニュー、ツールバー、ステータスバーがあるアプリケーションをデザインする場合などに使用すると便利です。
- 1 :
2 :
3 :
4 :
5 :
6 :
7 :
8 :
9 :
10 :
11 :
12 :
13 :
14 :
15 :
16 :
17 :
18 :
19 :
20 :
21 :
22 :
23 :
24 :
25 :
26 :
27 :
28 :
29 :
30 :
31 :
32 :
33 :
34 :
35 :
36 :
37 :
38 :
39 :
40 :
41 :
42 :
43 :
44 :
45 :
46 :
47 :
48 :
49 :
50 :
51 :
52 :
53 :
54 :
55 :
56 :
57 :
58 :
59 :
60 :
61 :
62 : -
import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.layout.BorderPane; import javafx.scene.text.Font; import javafx.stage.Stage; public class JavaFX_BorderPane extends Application{ public static void main(String... args){ Application.launch(args); } public void start(Stage stage) throws Exception { // ラベル「上」を作成 Label lbl1 = new Label( "上" ); lbl1 . setStyle( "-fx-background-color: blue" ); lbl1 . setFont( new Font(40) ); // ラベル「下」を作成 Label lbl2 = new Label( "下" ); lbl2 . setStyle( "-fx-background-color: red" ); lbl2 . setFont( new Font(40) ); // ラベル「中央」を作成 Label lbl3 = new Label( "中央" ); lbl3 . setStyle( "-fx-background-color: yellow" ); lbl3 . setFont( new Font(40) ); // ラベル「左」を作成 Label lbl4 = new Label( "左" ); lbl4 . setStyle( "-fx-background-color: green" ); lbl4 . setFont( new Font(40) ); // ラベル「右」を作成 Label lbl5 = new Label( "右" ); lbl5 . setStyle( "-fx-background-color: white" ); lbl5 . setFont( new Font(40) ); // BorderPaneを作成してLabelを配置 BorderPane border = new BorderPane(); border . setTop( lbl1 ); // BorderPaneの上部配置 border . setBottom( lbl2 ); // BorderPaneの下部に配置 border . setCenter( lbl3 ); // BorderPaneの中央に配置 border . setLeft( lbl4 ); // BorderPaneの左側に配置 border . setRight( lbl5 ); // BorderPaneの右側に配置 Scene scene = new Scene( border ); // sceanにBorderPaneを配置 stage . setTitle( "BorderPane" ); stage . setWidth( 300 ); stage . setHeight( 300 ); stage . setScene( scene ); // Stageにシーンを配置 stage . show(); } }
実行結果
配置位置内で縦・横・中央寄せ
上記実行結果の通り、5つのLableが上/下/右/左/中央に配置されました。ただ、それぞれの配置位置内では「上寄せ」「左寄せ」になっているため、なんだか上手く配置されていないように感じますが、配置位置内で縦横中央寄せをすることも可能です。
<< 配置位置内で縦・横・中央寄せについてはこちらへ >>