gpt4 book ai didi

java - swingx 的 JXDatePicker 中的日期范围?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:27:19 33 4
gpt4 key购买 nike

有谁知道是否可以使用 swingx 的 jxdatepicker 选择多天?我使用的是 swingx 版本 1.6.1(看起来是最新的)。

最佳答案

看起来 JXMonthView 类中有已弃用的方法...所以我能够使用 JXMonthView 类的 getSelection 方法让它返回所有选定的日期。

例如....

JXDatePicker picker = new JXDatePicker(System.currentTimeMillis());
final JXMonthView monthView = picker.getMonthView();
monthView.setSelectionMode(JXMonthView.SelectionMode.SINGLE_INTERVAL_SELECTION);
monthView.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

System.out.println((monthView.getSelection()));
}
});

关于java - swingx 的 JXDatePicker 中的日期范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3630093/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com