ModelSetSuperSmallForm.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 ModelSetSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.ModelSetSuperSmallForm
  12. {
  13. public ModelSetSuperSmallForm()
  14. {
  15. }
  16. private string _oldsize = "";
  17. /// <summary>
  18. /// 默认大小
  19. /// </summary>
  20. public string OldSize
  21. {
  22. set { _oldsize = value; }
  23. get { return _oldsize; }
  24. }
  25. private bool _oldisprint;
  26. /// <summary>
  27. /// 是否打印图片背景(true:打印出背景图片; false:不打印出背景图片)
  28. /// </summary>
  29. public bool OldIsPrint
  30. {
  31. get { return _oldisprint; }
  32. set { _oldisprint = value; }
  33. }
  34. private string _setsize = "";
  35. /// <summary>
  36. /// 设置后大小
  37. /// </summary>
  38. public string SetSize
  39. {
  40. set { _setsize = value; }
  41. get { return _setsize; }
  42. }
  43. private bool _isprint = true;
  44. /// <summary>
  45. /// 是否打印图片背景(true:打印出背景图片; false:不打印出背景图片)
  46. /// </summary>
  47. public bool IsPrint
  48. {
  49. get { return _isprint; }
  50. set { _isprint = value; }
  51. }
  52. /// <summary>
  53. /// 窗体加载事件
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. protected override void ModelSetSuperSmallForm_Load(object sender, EventArgs e)
  58. {
  59. if (this.OldSize != "")
  60. {
  61. nudModelWidth.Value = Convert.ToDecimal(this.OldSize.Split(',')[0].Trim());
  62. nudModelHeight.Value = Convert.ToDecimal(this.OldSize.Split(',')[1].Trim());
  63. }
  64. if (this.OldIsPrint)
  65. { this.chkPrint.Checked = true; }
  66. else { this.chkPrint.Checked = false; }
  67. }
  68. /// <summary>
  69. /// 确定
  70. /// </summary>
  71. /// <param name="sender"></param>
  72. /// <param name="e"></param>
  73. protected override void btnOK_Click(object sender, EventArgs e)
  74. {
  75. if (this.chkPrint.Checked)
  76. { this.IsPrint = true; }
  77. else { this.IsPrint = false; }
  78. this.SetSize = nudModelWidth.Value.ToString().Trim() + "," + nudModelHeight.Value.ToString().Trim();
  79. this.Close();
  80. }
  81. /// <summary>
  82. /// 取消
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. protected override void btnCancel_Click(object sender, EventArgs e)
  87. {
  88. this.Close();
  89. }
  90. }
  91. }