📄 createproject.designer.cs
字号:
namespace PlxCompiler
{
partial class CreateProject
{
/// <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 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.confirm = new System.Windows.Forms.Button();
this.cancel = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 33);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(0, 12);
this.label1.TabIndex = 0;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(76, 24);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(284, 21);
this.textBox1.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(19, 33);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 12);
this.label2.TabIndex = 0;
this.label2.Text = "名称";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(75, 59);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(285, 21);
this.textBox2.TabIndex = 2;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(19, 68);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 3;
this.label3.Text = "位置";
//
// folderBrowserDialog1
//
this.folderBrowserDialog1.RootFolder = System.Environment.SpecialFolder.MyComputer;
//
// confirm
//
this.confirm.Location = new System.Drawing.Point(96, 93);
this.confirm.Name = "confirm";
this.confirm.Size = new System.Drawing.Size(84, 22);
this.confirm.TabIndex = 4;
this.confirm.Text = "确定";
this.confirm.UseVisualStyleBackColor = true;
this.confirm.Click += new System.EventHandler(this.confirm_Click);
//
// cancel
//
this.cancel.Location = new System.Drawing.Point(233, 93);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(85, 21);
this.cancel.TabIndex = 5;
this.cancel.Text = "取消";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(389, 59);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(59, 22);
this.button3.TabIndex = 6;
this.button3.Text = "浏览...";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.browse_Click);
//
// CreateProject
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.button3);
this.Controls.Add(this.cancel);
this.Controls.Add(this.confirm);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Location = new System.Drawing.Point(100, 100);
this.Name = "CreateProject";
this.Size = new System.Drawing.Size(500, 130);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.Button confirm;
private System.Windows.Forms.Button cancel;
private System.Windows.Forms.Button button3;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -