SettingValueSuperSmallForm.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
  10. {
  11. public partial class SettingValueSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.SettingValueSuperSmallForm
  12. {
  13. public SettingValueSuperSmallForm()
  14. {
  15. }
  16. private string _loadtype = "";
  17. public string LoadType
  18. {
  19. set { _loadtype = value; }
  20. get { return _loadtype; }
  21. }
  22. private string _strtext = "";
  23. public string StrText
  24. {
  25. set { _strtext = value; }
  26. get { return _strtext; }
  27. }
  28. /// <summary>
  29. /// 窗体加载事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. protected override void SettingValueSuperSmallForm_Load(object sender, EventArgs e)
  34. {
  35. switch (LoadType)
  36. {
  37. case "DateTime": this.txtValue.Size = new Size(218, 22); this.txtValue.Text = LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now, "yyyy-MM-dd HH:mm:ss"); break;
  38. case "NvarChar": this.txtValue.Size = new Size(218, 67); break;
  39. case "Decimal": this.txtValue.Size = new Size(218, 22); this.txtValue.Text = "5000.00"; break;
  40. }
  41. }
  42. /// <summary>
  43. /// 确定
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. protected override void btnOK_Click(object sender, EventArgs e)
  48. {
  49. StrText = this.txtValue.Text.Trim();
  50. this.Close();
  51. }
  52. /// <summary>
  53. /// 取消
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. protected override void btnCancel_Click(object sender, EventArgs e)
  58. {
  59. this.Close();
  60. }
  61. }
  62. }