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

CSSでテキストにアンダーラインを引く

アンダーラインを引くは「-fx-underline」を使用します。


各種コントロールのsetStyleメソッドで「-fx-underline:true;」を設定した実行結果を以下に示します。(実行結果を明確にするため、表示内容を装飾しています)

実行例

Label

【 Label 実行結果 】

Button

【 Button 実行結果 】

TextField

変化なし

【 TextField 実行結果 】

TextArea

変化なし

【 TextArea 実行結果 】

CheckBox

【 CheckBox 実行結果 】

RadioButton

【 RadioButton 実行結果 】

ChoiceBox

変化なし

【 ChoiceBox 実行結果 】

ListView

変化なし

【 ListView 実行結果 】

ComboBox

変化なし

【 ComboBox 実行結果 】

Slider

変化なし

【 Slider 実行結果 】

Progress

変化なし

【 Progress 実行結果 】

ToolBar

変化なし

【 ToolBar 実行結果 】

TreeView

変化なし

【 TreeView 実行結果 】

TreeTableView

変化なし

【 TreeTableView 実行結果 】



Back JavaFX Menu