我想只允许在我的DateSpinner上选择月份和年份。 Flex SDK 4.7中有可能吗? THX
答案 0 :(得分:2)
这不是您可以启用/禁用的设置。
一种方法是将SpinnerList与您想要的年份值一起使用。
但您也可以扩展DateSpinner并隐藏您不想看到的组件。 如果查看DateSpinner源,您会看到三个属性:
/**
* The SpinnerList that shows the year field of the date.
*/
protected var yearList:SpinnerList;
/**
* The SpinnerList that shows the month field of the date.
*/
protected var monthList:SpinnerList;
/**
* The SpinnerList that shows the date field of the date.
*/
protected var dateList:SpinnerList;
初始化微调器后,您可以将其可见性和includeinlayout设置为false。