| 12345678910111213141516171819202122232425 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:C_DateTimePicker.cs
- * 2.功能描述:扩展的日期控件:便于修改背景颜色及字体、颜色
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 陈晓野 2014/08/13 1.00 新建
- *******************************************************************************/
- namespace Dongke.IBOSS.PRD.Basics.BaseControls
- {
- /// <summary>
- /// 扩展的日期控件
- /// </summary>
- public partial class C_DateTimePicker : DKDateTimePicker
- {
- public C_DateTimePicker()
- {
- InitializeComponent();
- this.CustomFormat = "yyyy-MM-dd";
- this.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- }
- }
- }
|