WordSpacingSuperSmallForm.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 WordSpacingSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.WordSpacingSuperSmallForm
  12. {
  13. public WordSpacingSuperSmallForm()
  14. {
  15. }
  16. private int _oldspacing = 0;
  17. public int OldSpacing
  18. {
  19. set { _oldspacing = value; }
  20. get { return _oldspacing; }
  21. }
  22. private int _newspacing = 0;
  23. public int NewSpacing
  24. {
  25. set { _newspacing = value; }
  26. get { return _newspacing; }
  27. }
  28. /// <summary>
  29. /// 窗体加载事件
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. protected override void WordSpacingSuperSmallForm_Load(object sender, EventArgs e)
  34. {
  35. this.cmbText.Text = this.OldSpacing.ToString();
  36. }
  37. /// <summary>
  38. /// 确定
  39. /// </summary>
  40. /// <param name="sender"></param>
  41. /// <param name="e"></param>
  42. protected override void btnOK_Click(object sender, EventArgs e)
  43. {
  44. NewSpacing = Convert.ToInt32(cmbText.Text.Trim());
  45. this.Close();
  46. }
  47. /// <summary>
  48. /// 取消
  49. /// </summary>
  50. /// <param name="sender"></param>
  51. /// <param name="e"></param>
  52. protected override void btnCancel_Click(object sender, EventArgs e)
  53. {
  54. this.Close();
  55. }
  56. }
  57. }