Javafx弹出的字体是粗体,如果想将其设置为普通文本,可以通过以下步骤实现:
.normal-text {
-fx-font-weight: normal;
}
// 方法一:使用setStyle()方法
yourComponent.setStyle("-fx-font-weight: normal;");
// 方法二:使用场景图的getStylesheets()方法
Scene scene = yourComponent.getScene();
scene.getStylesheets().add("path/to/styles.css");
注意:在方法二中,"path/to/styles.css"应替换为样式表文件的实际路径。
通过以上步骤,你可以将Javafx弹出的字体设置为普通文本,使其不再显示为粗体。
领取专属 10元无门槛券
手把手带您无忧上云