Outlook like calendar control in JavaFX 2.0+

前端 未结 4 520
借酒劲吻你
借酒劲吻你 2020-12-18 10:15

Is there any outlook like calendar control implemented in javaFX 2.0+?

相关标签:
4条回答
  • 2020-12-18 10:31

    Similar to Uluk's second suggestion, unless you want to build a pure JavaFX version yourself, I'd suggest wrapping something like Google Calendar in a WebView and programming it via a Java/JavaScript bridge.

    0 讨论(0)
  • 2020-12-18 10:33

    You could try:

    • http://javafxwidgets.blogspot.com/2012/01/simple-calendar-for-javafx-20.html
    • http://netbeans.dzone.com/articles/creating-datepicker-control
    0 讨论(0)
  • 2020-12-18 10:36

    Maybe by now you are on JavaFX 8. Then you could try CalendarFX.

    0 讨论(0)
  • 2020-12-18 10:47

    I didn't meet yet a calendar control implemented in pure javaFX 2.0. However you can choose alternative ways:
    1. Swing calendar component integrated into JavaFX. See for example Migcalendar. It is commercial though.
    2. JS/JQuery calendar control in HTML file loaded by webEngine and viewed by webView. See for example Fullcalendar.

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