| 1234567891011121314151617181920212223 |
-
- using System.Drawing;
- using System.Windows.Forms;
- namespace Dongke.WinForm.Controls
- {
- /// <summary>
- /// 日期控件,该控件用来让用户选择日期和时间并以【yyyy-MM-dd HH:mm:ss】格式显示此日期和时间。
- /// </summary>
- [ToolboxBitmap(typeof(DateTimePicker))]
- public class DtpDateTime : DateTimeBase, IDateTimeRange
- {
- #region 构造函数
- /// <summary>
- /// 日期控件
- /// </summary>
- public DtpDateTime()
- {
- this.ShowUpDown = true;
- }
- #endregion
- }
- }
|