12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- 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; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- }
- /// <summary>
- /// 日期格式选择事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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;
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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();
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|