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; }
}
///
/// 输入后回车
///
///
///
protected override void txtDate_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{ this.btnOK_Click(this, null); }
}
///
/// 日期点击赋日期
///
///
///
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"); }
}
}
///
/// 确定
///
///
///
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();
}
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}