12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 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 ArrangedDateSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.ArrangedDateSuperSmallForm
- {
- public ArrangedDateSuperSmallForm()
- {
- }
- private string _strdate = "";
- public string StrDate
- {
- get { return _strdate; }
- set { _strdate = value; }
- }
- /// <summary>
- /// 输入后回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtDate_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 txtDate_Enter(object sender, EventArgs e)
- {
- if (this.txtDate.Text.Trim() == "")
- {
- if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDate.Text.Trim()) == false)
- { this.txtDate.Text = SDateTime.Now.ToString("yyyy-MM-dd"); }
- }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- if (this.txtDate.Text.Trim() != "")
- {
- if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDate.Text.Trim()) == false)
- { MessageBoxCustom.Show("日期格式错误"); this.txtDate.Text = ""; return; }
- StrDate = this.txtDate.Text.Trim();
- this.Close();
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|