当前位置: 代码迷 >> 综合 >> javafx Scene Builder如何设置按钮的背景颜色以及字体颜色
  详细解决方案

javafx Scene Builder如何设置按钮的背景颜色以及字体颜色

热度:39   发布时间:2023-11-19 20:41:15.0

两种方法

1、直接在javafx显示页面上

2、在.fxml代码里面添加

 <Button  layoutX="376.0" layoutY="51.0"  prefHeight="25.647308349609375" style="  -fx-background-color:red;&#10;"  text="0m - 5m"   textFill="#00993d" underline="false" wrapText="false" />

 

背景颜色   :style="  -fx-background-color:red;"  

字体颜色:  textFill="#00993d"

  相关解决方案