Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
悬停节点宽度JavaFX Scene Builder时是否可以将鼠标光标设置为指针(手)?如何?
您可以将以下内容添加Style到相关节点:
Style
-fx-cursor: hand;
有关其他选项,请查看JavaFX CSS 文档
对于新的,您可以在您的 css 文件中使用它
.glyph-icon{ -fx-fill: White; } .glyph-icon:hover{ -fx-cursor: hand; -fx-fill: black; }
`
在最新版本的 Gluon Scene Builder (v11+) 中,此功能在Properties > Cursor以及一些其他选项下可用。
Properties > Cursor
这个功能的好处是当您查看选项时光标会更新,即如何设置该属性,如下面的 GIF 所示。