DateSetSuperSmallForm.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using LYFZ.Software.MainBusiness.DoorCityProcess;
  10. namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
  11. {
  12. public partial class DateSetSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.DateSetSuperSmallForm
  13. {
  14. public DateSetSuperSmallForm()
  15. {
  16. }
  17. private string _setdatetime = "yyyy-MM-dd";
  18. public string SetDateTime
  19. {
  20. set { _setdatetime = value; }
  21. get { return _setdatetime; }
  22. }
  23. /// <summary>
  24. /// 窗体加载事件
  25. /// </summary>
  26. /// <param name="sender"></param>
  27. /// <param name="e"></param>
  28. protected override void DateSetSuperSmallForm_Load(object sender, EventArgs e)
  29. {
  30. this.cmbText.Items.Add(new ListItem("年-月-日", "yyyy-MM-dd"));
  31. this.cmbText.Items.Add(new ListItem("年-月-日 时:分", "yyyy-MM-dd HH:mm"));
  32. this.cmbText.Items.Add(new ListItem("年-月-日 时:分:秒", "yyyy-MM-dd HH:mm:ss"));
  33. this.cmbText.Items.Add(new ListItem("年-月", "yyyy-MM"));
  34. this.cmbText.Items.Add(new ListItem("月-日", "MM-dd"));
  35. this.cmbText.Items.Add(new ListItem("时-分", "HH-mm"));
  36. this.cmbText.Items.Add(new ListItem("年", "yyyy"));
  37. this.cmbText.Items.Add(new ListItem("月", "MM"));
  38. this.cmbText.Items.Add(new ListItem("日", "dd"));
  39. this.lblExample.Visible = false;
  40. }
  41. /// <summary>
  42. /// 日期格式选择事件
  43. /// </summary>
  44. /// <param name="sender"></param>
  45. /// <param name="e"></param>
  46. protected override void cmbText_SelectedIndexChanged(object sender, EventArgs e)
  47. {
  48. ListItem li = (ListItem)this.cmbText.SelectedItem;
  49. string strKey = li.StrText; //得到选中项key(Prod_Name)
  50. string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
  51. lblExample.Text = "如:" + LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now, strValue);
  52. this.lblExample.Visible = true;
  53. }
  54. /// <summary>
  55. /// 确定
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected override void btnOK_Click(object sender, EventArgs e)
  60. {
  61. if (this.cmbText.Text.Trim() != "")
  62. {
  63. ListItem li = (ListItem)this.cmbText.SelectedItem;
  64. string strKey = li.StrText; //得到选中项key(Prod_Name)
  65. string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
  66. //lblExample.Text = "如:" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString(strValue);
  67. SetDateTime = strValue;
  68. this.Close();
  69. }
  70. }
  71. /// <summary>
  72. /// 取消
  73. /// </summary>
  74. /// <param name="sender"></param>
  75. /// <param name="e"></param>
  76. protected override void btnCancel_Click(object sender, EventArgs e)
  77. {
  78. this.Close();
  79. }
  80. }
  81. }