📄 mainform.designer.cs
字号:
namespace PDFWork
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.btnCreatePdf = new System.Windows.Forms.Button();
this.labTip = new System.Windows.Forms.Label();
this.PdfContainer = new AxAcroPDFLib.AxAcroPDF();
((System.ComponentModel.ISupportInitialize)(this.PdfContainer)).BeginInit();
this.SuspendLayout();
//
// btnCreatePdf
//
this.btnCreatePdf.Location = new System.Drawing.Point(12, 21);
this.btnCreatePdf.Name = "btnCreatePdf";
this.btnCreatePdf.Size = new System.Drawing.Size(195, 23);
this.btnCreatePdf.TabIndex = 0;
this.btnCreatePdf.Text = "创建PDF文件";
this.btnCreatePdf.UseVisualStyleBackColor = true;
this.btnCreatePdf.Click += new System.EventHandler(this.btnCreatePdf_Click);
//
// labTip
//
this.labTip.AutoSize = true;
this.labTip.Location = new System.Drawing.Point(353, 31);
this.labTip.Name = "labTip";
this.labTip.Size = new System.Drawing.Size(0, 12);
this.labTip.TabIndex = 2;
//
// PdfContainer
//
this.PdfContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.PdfContainer.Enabled = true;
this.PdfContainer.Location = new System.Drawing.Point(12, 60);
this.PdfContainer.Name = "PdfContainer";
this.PdfContainer.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("PdfContainer.OcxState")));
this.PdfContainer.Size = new System.Drawing.Size(768, 494);
this.PdfContainer.TabIndex = 1;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(792, 566);
this.Controls.Add(this.labTip);
this.Controls.Add(this.PdfContainer);
this.Controls.Add(this.btnCreatePdf);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "PDFWork";
((System.ComponentModel.ISupportInitialize)(this.PdfContainer)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCreatePdf;
private System.Windows.Forms.Label labTip;
private AxAcroPDFLib.AxAcroPDF PdfContainer;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -