datefieldcomp.as

来自「本人为公司开发的Flex办公系统web源码,包括数据库脚本文件。」· AS 代码 · 共 20 行

AS
20
字号
// Copyright (C) 2007-2008 luhan 
// All rights reserved 
// created by feng luhan
package Compnents
{
	import mx.controls.DateField;

	public class DateFieldComp extends DateField
	{
		public function DateFieldComp()
		{
			super();
			this.dayNames = [ "日", "一", "二", "三", "四", "五", "六" ];
			this.monthNames = [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ]
			this.yearNavigationEnabled = true;
			this.yearSymbol = '年'
		}
		
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?