📄 form1.designer.cs
字号:
namespace ParseWord
{
partial class Form1
{
/// <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()
{
this.label1 = new System.Windows.Forms.Label();
this.buttonParse = new System.Windows.Forms.Button();
this.textBoxWordPathName = new System.Windows.Forms.TextBox();
this.textBoxFile = new System.Windows.Forms.TextBox();
this.buttonBrowse = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 39);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 12);
this.label1.TabIndex = 3;
this.label1.Text = "Word File Name:";
//
// buttonParse
//
this.buttonParse.Location = new System.Drawing.Point(481, 113);
this.buttonParse.Name = "buttonParse";
this.buttonParse.Size = new System.Drawing.Size(75, 23);
this.buttonParse.TabIndex = 8;
this.buttonParse.Text = "Parse";
this.buttonParse.UseVisualStyleBackColor = true;
this.buttonParse.Click += new System.EventHandler(this.buttonParse_Click);
//
// textBoxWordPathName
//
this.textBoxWordPathName.Location = new System.Drawing.Point(113, 36);
this.textBoxWordPathName.Name = "textBoxWordPathName";
this.textBoxWordPathName.Size = new System.Drawing.Size(329, 21);
this.textBoxWordPathName.TabIndex = 7;
//
// textBoxFile
//
this.textBoxFile.Location = new System.Drawing.Point(-2, 175);
this.textBoxFile.Multiline = true;
this.textBoxFile.Name = "textBoxFile";
this.textBoxFile.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxFile.Size = new System.Drawing.Size(558, 195);
this.textBoxFile.TabIndex = 6;
//
// buttonBrowse
//
this.buttonBrowse.Location = new System.Drawing.Point(481, 34);
this.buttonBrowse.Name = "buttonBrowse";
this.buttonBrowse.Size = new System.Drawing.Size(75, 23);
this.buttonBrowse.TabIndex = 5;
this.buttonBrowse.Text = "Browse";
this.buttonBrowse.UseVisualStyleBackColor = true;
this.buttonBrowse.Click += new System.EventHandler(this.buttonBrowse_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(557, 367);
this.Controls.Add(this.buttonParse);
this.Controls.Add(this.textBoxWordPathName);
this.Controls.Add(this.textBoxFile);
this.Controls.Add(this.buttonBrowse);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button buttonParse;
private System.Windows.Forms.TextBox textBoxWordPathName;
private System.Windows.Forms.TextBox textBoxFile;
private System.Windows.Forms.Button buttonBrowse;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -