本文介绍了我怎样才能水印Flex 4中DateField控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何使一个DateField控件带有水印。我想提示/水印文本从MXML设置像这样的:
< MX:的DateField ID =id_datepropmt =选择日期/>
解决方案
使用这种
< MX:的DateField ID =DF文本=选择日期的focusIn =df.text =''/>
或请参阅该博客的自定义DateField组件
WaterMarkDateField
I would like to know how to make a DateField control with a watermark. I want to set the prompt/watermark text from MXML like this one:
<mx:DateField id="id_date" propmt="Select date" />
解决方案
Use this
<mx:DateField id="df" text="Select Date" focusIn="df.text=''" />
OR Refer This Blog for custom datefield component
WaterMarkDateField
这篇关于我怎样才能水印Flex 4中DateField控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!