我只想在我的 DateSpinner 上选择月份和年份。这在 Flex SDK 4.7 中可行吗?谢谢
问问题
139 次
1 回答
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。
于 2014-05-13T08:00:28.633 回答