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;
using LYFZ.Software.MainBusiness.DoorCityProcess;
namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
{
public partial class DateSetSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.DateSetSuperSmallForm
{
public DateSetSuperSmallForm()
{
}
private string _setdatetime = "yyyy-MM-dd";
public string SetDateTime
{
set { _setdatetime = value; }
get { return _setdatetime; }
}
///
/// 窗体加载事件
///
///
///
protected override void DateSetSuperSmallForm_Load(object sender, EventArgs e)
{
this.cmbText.Items.Add(new ListItem("年-月-日", "yyyy-MM-dd"));
this.cmbText.Items.Add(new ListItem("年-月-日 时:分", "yyyy-MM-dd HH:mm"));
this.cmbText.Items.Add(new ListItem("年-月-日 时:分:秒", "yyyy-MM-dd HH:mm:ss"));
this.cmbText.Items.Add(new ListItem("年-月", "yyyy-MM"));
this.cmbText.Items.Add(new ListItem("月-日", "MM-dd"));
this.cmbText.Items.Add(new ListItem("时-分", "HH-mm"));
this.cmbText.Items.Add(new ListItem("年", "yyyy"));
this.cmbText.Items.Add(new ListItem("月", "MM"));
this.cmbText.Items.Add(new ListItem("日", "dd"));
this.lblExample.Visible = false;
}
///
/// 日期格式选择事件
///
///
///
protected override void cmbText_SelectedIndexChanged(object sender, EventArgs e)
{
ListItem li = (ListItem)this.cmbText.SelectedItem;
string strKey = li.StrText; //得到选中项key(Prod_Name)
string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
lblExample.Text = "如:" + LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now, strValue);
this.lblExample.Visible = true;
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
if (this.cmbText.Text.Trim() != "")
{
ListItem li = (ListItem)this.cmbText.SelectedItem;
string strKey = li.StrText; //得到选中项key(Prod_Name)
string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
//lblExample.Text = "如:" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString(strValue);
SetDateTime = strValue;
this.Close();
}
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}