所以我在javafx中有一个菜单栏,如何更改菜单的文本样式以及菜单项的字体和颜色。我是javafx的新手。
答案 0 :(得分:0)
因此为应用程序创建一个CSS文件 然后举个例子,
.menu .label {
-fx-font-family: what ever the font style you want then put a semicolon at then end.
-fx-fill: color name you want and put a semicolon at then end.
}
然后将样式表应用于主框架
stylesheets="@application.css"
在你的fxml文件中
那么你应该很好。