DecimalSetSuperSmallForm.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 DecimalSetSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.DecimalSetSuperSmallForm
  13. {
  14. public DecimalSetSuperSmallForm()
  15. {
  16. }
  17. private string _olddecimal = "#.00";
  18. public string OldDecimal
  19. {
  20. set { _olddecimal = value; }
  21. get { return _olddecimal; }
  22. }
  23. private string _setdecimal = "";
  24. public string SetDecimal
  25. {
  26. set { _setdecimal = value; }
  27. get { return _setdecimal; }
  28. }
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected override void DecimalSetSuperSmallForm_Load(object sender, EventArgs e)
  35. {
  36. this.cmbText.Items.Add(new ListItem("5,000,000.00", "#,###.00"));
  37. this.cmbText.Items.Add(new ListItem("5,000,000", "#,###"));
  38. this.cmbText.Items.Add(new ListItem("5000000.00", "#.00"));
  39. this.cmbText.Items.Add(new ListItem("5000000", "#"));
  40. if (this.OldDecimal != "")
  41. { this.cmbText.Text = this.OldDecimal; }
  42. }
  43. /// <summary>
  44. /// 确定
  45. /// </summary>
  46. /// <param name="sender"></param>
  47. /// <param name="e"></param>
  48. protected override void btnOK_Click(object sender, EventArgs e)
  49. {
  50. if (this.cmbText.Text.Trim() != "")
  51. {
  52. ListItem li = (ListItem)this.cmbText.SelectedItem;
  53. string strKey = li.StrText; //得到选中项key(Prod_Name)
  54. string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
  55. this.SetDecimal = strValue;
  56. this.Close();
  57. }
  58. }
  59. /// <summary>
  60. /// 取消
  61. /// </summary>
  62. /// <param name="sender"></param>
  63. /// <param name="e"></param>
  64. protected override void btnCanel_Click(object sender, EventArgs e)
  65. {
  66. this.Close();
  67. }
  68. }
  69. }