Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TableView コンポーネントのヘッダーのテキストの色を変更するにはどうすればよいですか?
私はこれに疲れました:
.table-view .column-header, .table-view .filler { -fx-text-fill: white; -fx-border-width: 0, 0; -fx-font-size: 12px; }
これにより、境界線が削除され、フォント サイズも変更されますが、フォントの色は変更されません。
このようなものがうまくいくかもしれません。
.table-view .column-header .label { -fx-text-fill: white; -fx-font-weight: bold; }