JavaFX extract calendar-popup from DatePicker / only show popup

后端 未结 2 1899
南笙
南笙 2020-12-10 19:42

I\'m trying to build an CalendarView for an JavaFX application, to only display dates(no selecting required). Since the DatePicker class has a nice calendar pop

2条回答
  •  孤城傲影
    2020-12-10 20:14

    To remove "month-year-pane" use:

    DatePickerSkin datePickerSkin = new DatePickerSkin(date_picker);
    Node popupContent = datePickerSkin.getPopupContent();
    ((DatePickerContent) popupContent).getChildren().remove(popupContent.lookup(".month-year-pane"));
    

提交回复
热议问题