俺だけの秘密基地 IT系技術局
Java関連技術情報セクション

CSSを用いた背景色の設定

背景色を設定するには「-fx-background-color」を使用します。


各種コントロールのsetStyleメソッドで「-fx-background-color: green」を設定した実行結果を以下に示します。

実行例

Label

【 Label 実行結果 】

Button

【 Button 実行結果 】

TextField

【 TextField 実行結果 】

TextArea

入力フィールドの後ろがGreenになっているのか?フチがgreenになった。TextFieldと同じ結果にならないことが興味深い。

【 TextArea 実行結果 】

CheckBox

【 CheckBox 実行結果 】

RadioButton

【 RadioButton 実行結果 】

ChoiceBox

【 ChoiceBox 実行結果 】

ListView

背景がGreenになっているのか?フチがGreenになった。

【 ListView 実行結果 】

ComboBox

【 ComboBox 実行結果 】

Slider

【 Slider 実行結果 】

Progress

TextArea、ListViewと同様に、フチがGreenになった。

【 Progress 実行結果 】

ToolBar

【 ToolBar 実行結果 】

TreeView

背景がGreenになっているのか?フチがGreenになった。

【 TreeView 実行結果 】

TreeTableView

背景がGreenになっているのか?フチがGreenになった。

【 TreeTableView 実行結果 】



Back JavaFX Menu