📄 datefieldcomp.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 + -