JavaFX equivalent of Swing's JSpinner?

前端 未结 3 1508
慢半拍i
慢半拍i 2021-01-12 07:03

I was trying to find a spinner component like JSpinner to use in my JavaFX application but there is no such component.

What JavaFX component do you recommend me to u

相关标签:
3条回答
  • 2021-01-12 07:42

    JavaFX 8 has a Spinner class. (but earlier versions haven't)

    0 讨论(0)
  • 2021-01-12 07:45

    You can also check and follow my initial approach to the spinner implementation problem, which you can find here: https://github.com/bluevoxel/Custom_Spinner_JavaFX8/wiki

    And thats how it looks like:

    enter image description here

    Its functionality is constantly expanding, so I will be very grateful for your feedback.

    UPDATE 4/11/2014

    There is a new version available with expanded functionality including doubles, additional customizable ContextMenu class for choosing the incrementation value, additional method for uploading custom functionality to increase/decrease buttons. Check the link below to know more:

    https://gist.github.com/bluevoxel/c730a101ba812728a235

    Also, there is a new outlook lack of external image files:

    enter image description here

    0 讨论(0)
  • 2021-01-12 07:48

    Update for Java 8

    JavaFX 8 has now an in-built Spinner class as part of the core JavaFX library (as mentioned in SWdV's answer to this question).

    Old (pre-Java 8) Answer

    There is a spinner control in the JFXtras library, you could use that implementation or possibly adapt it to your needs.

    A spinner control is proposed for inclusion in a future JavaFX version. The target version is currently unspecified, so perhaps it won't even be released with Java 8. The proposed spinner control has a usability design document. The open-jfx project may accept a quality implementation of the usability design for inclusion into the core JavaFX platform or the JavaFX UI Control Sandbox.

    0 讨论(0)
提交回复
热议问题