本文介绍了JCalendar多天选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在toedter的JCalendar中选择多天?就像我可以在日历中突出显示2或3天,然后在我使用按钮触发事件后突出显示日期。
Is it possible to select multiple days in toedter's JCalendar? Like I would be able to highlight 2 or 3 days in the calendar and then get the days highlighted after I would trigger an event using a button.
或者我应该更好使用JTable作为日历?
or should i be better off using a JTable for a calendar?
推荐答案
我使用一列 JTable
拥有 JDateChooserCellEditor
和。 DemoTable
就是一个例子,见。 TableModel
应包含 List< java.util.Date>
, Date
implements Comparable
for easy 。您可以在 DemoTableModel
中提供 addRow()
方法,可以在 button's handler.
这篇关于JCalendar多天选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!