MenuButton在Menu内部使用并具有类似的API。这样就MenuButton包含MenuItems列表,就像Menu。因此,我认为你需要尝试一起玩.menu,.menu-button并.menu-item在caspian.css CSS选择器。更具体地讲.menu-item。
编辑:似乎您也需要更改.context-menu,因为menuButton的弹出菜单是ContextMenu。
.menu-item .label { -fx-text-fill: white;}.menu-item:focused { -fx-background-color: darkgray;}.menu-item:focused .label { -fx-text-fill: blue;}.context-menu { -fx-skin: "com.sun.javafx.scene.control.skin.ContextMenuSkin"; -fx-background-color: black; -fx-background-insets: 0, 1, 2; -fx-background-radius: 0 6 6 6, 0 5 5 5, 0 4 4 4; -fx-padding: 0.333333em 0.083333em 0.666667em 0.083333em; }


