123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.CameraControlBook.SuperSmallForm
- {
- public partial class GetDateSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetDateSuperSmallForm
- {
- public GetDateSuperSmallForm()
- {
- }
- private string _strvalue = "";
- public string StrValue
- {
- get { return _strvalue; }
- set { _strvalue = value; }
- }
- /// <summary>
- /// 是否确定
- /// </summary>
- public bool IsOK = false;
- /// <summary>
- /// 是否允许值为空
- /// </summary>
- public bool IsValueNull = true;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void GetDateSuperSmallForm_Load(object sender, EventArgs e)
- {
- this.dtpDate.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now);
- }
- /// <summary>
- /// 输入后回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void dtpDate_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- { this.btnOK_Click(this, null); }
- }
- /// <summary>
- /// 日期值改变事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void dtpDate_ValueChanged(object sender, EventArgs e)
- {
- this.dtpDate.CustomFormat = "yyyy-MM-dd";
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- if (!IsValueNull)
- {
- if (string.IsNullOrEmpty(this.dtpDate.DateValue))
- { MessageBoxCustom.Show("日期不允许为空!"); return; }
- }
- IsOK = true;
- StrValue = this.dtpDate.DateValue;
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|