Form1.Designer.cs
资源名称:dayinji.rar [点击查看]
上传用户:w139379
上传日期:2022-08-09
资源大小:21k
文件大小:7k
源码类别:
打印编程
开发平台:
JavaScript
- namespace printout
- {
- partial class Form1
- {
- /// <summary>
- /// 设计工具所需的变数。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- //Download by http://www.codefans.net
- /// <summary>
- /// 清除任何使用中的资源。
- /// </summary>
- /// <param name="disposing">如果应该公开 Managed 资源则为 true,否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form 设计工具产生的程序代码
- /// <summary>
- /// 此为设计工具支持所需的方法 - 请勿使用程序代码编辑器修改这个方法的内容。
- ///
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.txtInput = new System.Windows.Forms.TextBox();
- this.btnSetUp = new System.Windows.Forms.Button();
- this.btnPreView = new System.Windows.Forms.Button();
- this.btnPrint = new System.Windows.Forms.Button();
- this.btnEnd = new System.Windows.Forms.Button();
- this.printDocument1 = new System.Drawing.Printing.PrintDocument();
- this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
- this.printDialog1 = new System.Windows.Forms.PrintDialog();
- this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
- this.SuspendLayout();
- //
- // txtInput
- //
- this.txtInput.Font = new System.Drawing.Font("PMingLiU", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
- this.txtInput.Location = new System.Drawing.Point(17, 19);
- this.txtInput.Multiline = true;
- this.txtInput.Name = "txtInput";
- this.txtInput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.txtInput.Size = new System.Drawing.Size(278, 219);
- this.txtInput.TabIndex = 0;
- //
- // btnSetUp
- //
- this.btnSetUp.Location = new System.Drawing.Point(319, 37);
- this.btnSetUp.Name = "btnSetUp";
- this.btnSetUp.Size = new System.Drawing.Size(72, 29);
- this.btnSetUp.TabIndex = 1;
- this.btnSetUp.Text = "页面设置";
- this.btnSetUp.UseVisualStyleBackColor = true;
- this.btnSetUp.Click += new System.EventHandler(this.btnSetUp_Click);
- //
- // btnPreView
- //
- this.btnPreView.Location = new System.Drawing.Point(319, 84);
- this.btnPreView.Name = "btnPreView";
- this.btnPreView.Size = new System.Drawing.Size(74, 27);
- this.btnPreView.TabIndex = 2;
- this.btnPreView.Text = "预览打印";
- this.btnPreView.UseVisualStyleBackColor = true;
- this.btnPreView.Click += new System.EventHandler(this.btnPreView_Click);
- //
- // btnPrint
- //
- this.btnPrint.Location = new System.Drawing.Point(323, 130);
- this.btnPrint.Name = "btnPrint";
- this.btnPrint.Size = new System.Drawing.Size(69, 28);
- this.btnPrint.TabIndex = 3;
- this.btnPrint.Text = "打印";
- this.btnPrint.UseVisualStyleBackColor = true;
- this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
- //
- // btnEnd
- //
- this.btnEnd.Location = new System.Drawing.Point(324, 178);
- this.btnEnd.Name = "btnEnd";
- this.btnEnd.Size = new System.Drawing.Size(67, 26);
- this.btnEnd.TabIndex = 4;
- this.btnEnd.Text = "结束";
- this.btnEnd.UseVisualStyleBackColor = true;
- this.btnEnd.Click += new System.EventHandler(this.btnEnd_Click);
- //
- // printDocument1
- //
- this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
- //
- // printPreviewDialog1
- //
- this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
- this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
- this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
- this.printPreviewDialog1.Document = this.printDocument1;
- this.printPreviewDialog1.Enabled = true;
- this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
- this.printPreviewDialog1.Name = "printPreviewDialog1";
- this.printPreviewDialog1.Visible = false;
- //
- // printDialog1
- //
- this.printDialog1.Document = this.printDocument1;
- this.printDialog1.UseEXDialog = true;
- //
- // pageSetupDialog1
- //
- this.pageSetupDialog1.Document = this.printDocument1;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(420, 315);
- this.Controls.Add(this.btnEnd);
- this.Controls.Add(this.btnPrint);
- this.Controls.Add(this.btnPreView);
- this.Controls.Add(this.btnSetUp);
- this.Controls.Add(this.txtInput);
- this.Name = "Form1";
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtInput;
- private System.Windows.Forms.Button btnSetUp;
- private System.Windows.Forms.Button btnPreView;
- private System.Windows.Forms.Button btnPrint;
- private System.Windows.Forms.Button btnEnd;
- private System.Drawing.Printing.PrintDocument printDocument1;
- private System.Windows.Forms.PrintPreviewDialog printPreviewDialog1;
- private System.Windows.Forms.PrintDialog printDialog1;
- private System.Windows.Forms.PageSetupDialog pageSetupDialog1;
- }
- }