⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datefieldcomp.as

📁 本人为公司开发的Flex办公系统web源码,包括数据库脚本文件。
💻 AS
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -