是否可以在JavaFX标签的开头添加项目符号点?
以下是标签的基本FXML
<Label fx:id="lblTerm1" text="Label" wrapText="true" VBox.vgrow="ALWAYS" />
输出类似这样的东西
我的名字
我想要像
这样的东西答案 0 :(得分:4)
您可以使用unicode字符在标签上显示的文本中包含项目符号。
0x2022 8226 BULLET •
如果您正在寻找更大的东西,您可以查看: What would be the Unicode character for big bullet in the middle of the character?
希望这有帮助。