123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.ReportPrint.SetSmallForm
- {
- public partial class PrintPreviewSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public PrintPreviewSmallForm()
- {
- InitializeComponent();
- this.btnPrint.Click += btnPrint_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.btnSavePicture.Click += btnSavePicture_Click;
- this.btnZoom.Click += btnZoom_Click;
- this.btnReduce.Click += btnReduce_Click;
- this.btnCenter.Click += btnCenter_Click;
- this.numValue.ValueChanged += numValue_ValueChanged;
- //this.ptDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(ptDocument_PrintPage);
- this.Resize += PrintPreviewSmallForm_Resize;
- }
- /// <summary>
- /// 打印
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnPrint_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 存为图片
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSavePicture_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 放大
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnZoom_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 缩小
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnReduce_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 适中
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCenter_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 翻页
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void numValue_ValueChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- ///// <summary>
- ///// 输出
- ///// </summary>
- ///// <param name="sender"></param>
- ///// <param name="e"></param>
- //protected virtual void ptDocument_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
- //{
- // //throw new NotImplementedException();
- //}
- /// <summary>
- /// 窗体大小发生变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PrintPreviewSmallForm_Resize(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|