javafx.scene.layout.HBox
HBox(ホリゾンタルボックス)は、コントロールを横に並べて配置するレイアウトです。
- 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 : -
import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.layout.Background; import javafx.scene.layout.BackgroundFill; import javafx.scene.layout.CornerRadii; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.scene.text.Font; import javafx.stage.Stage; public class JavaFX_HBox extends Application{ public static void main(String... args){ Application.launch(args); } public void start(Stage stage) throws Exception { // Lableを4つ作成 Label lbl1 = new Label( "Lable1" ); lbl1 . setFont( new Font( 20 ) ); lbl1 . setTextFill(Color.WHITE); lbl1 . setBackground( new Background( new BackgroundFill( Color.RED , new CornerRadii( 0 ) , Insets.EMPTY ) ) ); Label lbl2 = new Label( "Lable2" ); lbl2 . setFont( new Font( 20 ) ); lbl2 . setTextFill(Color.WHITE); lbl2 . setBackground( new Background( new BackgroundFill( Color.GREEN , new CornerRadii( 0 ) , Insets.EMPTY ) ) ); Label lbl3 = new Label( "Lable3" ); lbl3 . setFont( new Font( 20 ) ); lbl3 . setTextFill(Color.WHITE); lbl3 . setBackground( new Background( new BackgroundFill( Color.BLUE , new CornerRadii( 0 ) , Insets.EMPTY ) ) ); HBox hbox = new HBox(); // HBoxを作成してLabelを配置 hbox . getChildren() . addAll( lbl1 , lbl2 , lbl3 ); Scene scene = new Scene( hbox ); // SceanにVBoxをを配置 stage . setTitle( "HBox" ); stage . setWidth( 300 ); stage . setHeight( 100 ); stage . setScene( scene ); // Stageにシーンを配置 stage . show(); } }