我想知道如果通过javafx-css可以设置标签文本。 在官方文档中,我找到了对
的引用-fx-text: "whatever";
但是没有工作,基本上我正在寻找和等同于css3
content: "whatever";
此处指定:W3School
答案 0 :(得分:7)
这在JavaFX中是不可能的,您可以通过从Label
获取所有可设置属性来轻松验证这一点:
Label label = new Label();
label.getCssMetaData().stream().map(CssMetaData::getProperty).sorted().forEach(System.out::println);
产生以下列表(不包括-fx-text
或允许您根据CSS Reference Guide设置内容的任何内容):
-fx-alignment
-fx-blend-mode
-fx-content-display
-fx-cursor
-fx-effect
-fx-ellipsis-string
-fx-focus-traversable
-fx-font
-fx-graphic
-fx-graphic-text-gap
-fx-label-padding
-fx-line-spacing
-fx-max-height
-fx-max-width
-fx-min-height
-fx-min-width
-fx-opacity
-fx-opaque-insets
-fx-padding
-fx-position-shape
-fx-pref-height
-fx-pref-width
-fx-region-background
-fx-region-border
-fx-rotate
-fx-scale-shape
-fx-scale-x
-fx-scale-y
-fx-scale-z
-fx-shape
-fx-skin
-fx-snap-to-pixel
-fx-text-alignment
-fx-text-fill
-fx-text-overrun
-fx-translate-x
-fx-translate-y
-fx-translate-z
-fx-underline
-fx-wrap-text
visibility