CSSを用いたフォントの設定
CSSのフォント設定は次の4つのプロパティで設定します。4つのプロパティは、個別に設定することも、まとめて設定することも可能です。
-
-fx-font-family [ FontFamilyを指定 ] -fx-font-size [ Fontサイズを指定 ] -fx-font-style [ normal | italic | oblique ] -fx-font-weight [ normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 ]
まとめて設定する場合
-
-fx-font [ [ <font-style> || <font-weight> ] ? <font-size> <font-family> ]
各種コントロールのsetStyleメソッドで「-fx-font: italic 22 sans-serif 」を設定した実行結果を以下に示します。
-
setStyle( "-fx-font: italic 22 sans-serif" )
実行例
Label
Button
TextField
TextArea
CheckBox
RadioButton
ChoiceBox
ListView
ComboBox
Slider
Progress
ToolBar
TreeView
TreeTableView