Files
easySif/mainProgram/OpenProjectWindow.Designer.cs
2021-12-14 18:39:55 +08:00

110 lines
4.6 KiB
C#

namespace mainProgram
{
partial class OpenProjectWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.ProjectPathTextBox = new System.Windows.Forms.TextBox();
this.OpenProjectPathBtn = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SelectProjectPathBtn = new System.Windows.Forms.Button();
this.CancelBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// ProjectPathTextBox
//
this.ProjectPathTextBox.Location = new System.Drawing.Point(246, 133);
this.ProjectPathTextBox.Name = "ProjectPathTextBox";
this.ProjectPathTextBox.ReadOnly = true;
this.ProjectPathTextBox.Size = new System.Drawing.Size(163, 21);
this.ProjectPathTextBox.TabIndex = 0;
//
// OpenProjectPathBtn
//
this.OpenProjectPathBtn.Location = new System.Drawing.Point(206, 228);
this.OpenProjectPathBtn.Name = "OpenProjectPathBtn";
this.OpenProjectPathBtn.Size = new System.Drawing.Size(75, 23);
this.OpenProjectPathBtn.TabIndex = 2;
this.OpenProjectPathBtn.Text = "打开工程";
this.OpenProjectPathBtn.UseVisualStyleBackColor = true;
this.OpenProjectPathBtn.Click += new System.EventHandler(this.OpenProjectPathBtn_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(162, 133);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 3;
this.label1.Text = "工程路径";
//
// SelectProjectPathBtn
//
this.SelectProjectPathBtn.Location = new System.Drawing.Point(432, 130);
this.SelectProjectPathBtn.Name = "SelectProjectPathBtn";
this.SelectProjectPathBtn.Size = new System.Drawing.Size(75, 23);
this.SelectProjectPathBtn.TabIndex = 4;
this.SelectProjectPathBtn.Text = "选择";
this.SelectProjectPathBtn.UseVisualStyleBackColor = true;
this.SelectProjectPathBtn.Click += new System.EventHandler(this.SelectProjectPathBtn_Click);
//
// CancelBtn
//
this.CancelBtn.Location = new System.Drawing.Point(444, 227);
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(75, 23);
this.CancelBtn.TabIndex = 5;
this.CancelBtn.Text = "取消";
this.CancelBtn.UseVisualStyleBackColor = true;
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
//
// OpenProjectWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.CancelBtn);
this.Controls.Add(this.SelectProjectPathBtn);
this.Controls.Add(this.label1);
this.Controls.Add(this.OpenProjectPathBtn);
this.Controls.Add(this.ProjectPathTextBox);
this.Name = "OpenProjectWindow";
this.Text = "打开工程";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox ProjectPathTextBox;
private System.Windows.Forms.Button OpenProjectPathBtn;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button SelectProjectPathBtn;
private System.Windows.Forms.Button CancelBtn;
}
}