PrintPreviewSmallForm.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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.UI.ReportPrint.SetSmallForm
  10. {
  11. public partial class PrintPreviewSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public PrintPreviewSmallForm()
  14. {
  15. InitializeComponent();
  16. this.btnPrint.Click += btnPrint_Click;
  17. this.btnCancel.Click += btnCancel_Click;
  18. this.btnSavePicture.Click += btnSavePicture_Click;
  19. this.btnZoom.Click += btnZoom_Click;
  20. this.btnReduce.Click += btnReduce_Click;
  21. this.btnCenter.Click += btnCenter_Click;
  22. this.numValue.ValueChanged += numValue_ValueChanged;
  23. //this.ptDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(ptDocument_PrintPage);
  24. this.Resize += PrintPreviewSmallForm_Resize;
  25. }
  26. /// <summary>
  27. /// 打印
  28. /// </summary>
  29. /// <param name="sender"></param>
  30. /// <param name="e"></param>
  31. protected virtual void btnPrint_Click(object sender, EventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. /// <summary>
  36. /// 取消
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. protected virtual void btnCancel_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. /// <summary>
  45. /// 存为图片
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. protected virtual void btnSavePicture_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. /// <summary>
  54. /// 放大
  55. /// </summary>
  56. /// <param name="sender"></param>
  57. /// <param name="e"></param>
  58. protected virtual void btnZoom_Click(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. /// <summary>
  63. /// 缩小
  64. /// </summary>
  65. /// <param name="sender"></param>
  66. /// <param name="e"></param>
  67. protected virtual void btnReduce_Click(object sender, EventArgs e)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. /// <summary>
  72. /// 适中
  73. /// </summary>
  74. /// <param name="sender"></param>
  75. /// <param name="e"></param>
  76. protected virtual void btnCenter_Click(object sender, EventArgs e)
  77. {
  78. //throw new NotImplementedException();
  79. }
  80. /// <summary>
  81. /// 翻页
  82. /// </summary>
  83. /// <param name="sender"></param>
  84. /// <param name="e"></param>
  85. protected virtual void numValue_ValueChanged(object sender, EventArgs e)
  86. {
  87. //throw new NotImplementedException();
  88. }
  89. ///// <summary>
  90. ///// 输出
  91. ///// </summary>
  92. ///// <param name="sender"></param>
  93. ///// <param name="e"></param>
  94. //protected virtual void ptDocument_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
  95. //{
  96. // //throw new NotImplementedException();
  97. //}
  98. /// <summary>
  99. /// 窗体大小发生变化
  100. /// </summary>
  101. /// <param name="sender"></param>
  102. /// <param name="e"></param>
  103. protected virtual void PrintPreviewSmallForm_Resize(object sender, EventArgs e)
  104. {
  105. //throw new NotImplementedException();
  106. }
  107. }
  108. }