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

CSSを用いた文字色の設定

文字色を設定するには「-fx-text-fill」を使用します。


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

実行例

Label

【 Label 実行結果 】

Button

【 Button 実行結果 】

TextField

【 TextField 実行結果 】

TextArea

【 TextArea 実行結果 】

CheckBox

【 CheckBox 実行結果 】

RadioButton

【 RadioButton 実行結果 】

ChoiceBox

ChoiceBoxは「-fx-text-fill」が効かない?別の変更方法を調査中

【 ChoiceBox 実行結果 】

ListView

ListViewは「-fx-text-fill」が効かない?別の変更方法を調査中

【 ListView 実行結果 】

ComboBox

ComboBoxは「-fx-text-fill」が効かない?別の変更方法を調査中

【 ComboBox 実行結果 】

Slider

【 Slider 実行結果 】

Progress

【 Progress 実行結果 】

ToolBar

ToolBarそのものに「-fx-text-fill」を設定するのではなく、ToolBarの中のボタンなどに「-fx-text-fill」を設定すること

【 ToolBar 実行結果 】

TreeView

TreeViewは「-fx-text-fill」が効かない?別の変更方法を調査中

【 TreeView 実行結果 】

TreeTableView

TreeTableViewは「-fx-text-fill」が効かない?別の変更方法を調査中

【 TreeTableView 実行結果 】



Back JavaFX Menu