146 lines
6.3 KiB
C#
146 lines
6.3 KiB
C#
namespace mainProgram
|
|
{
|
|
partial class NewProjectWindow
|
|
{
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.ProjectPathTextBox = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.CreateProjectBtn = new System.Windows.Forms.Button();
|
|
this.Cancel = new System.Windows.Forms.Button();
|
|
this.DataPathTextBox = new System.Windows.Forms.TextBox();
|
|
this.SelectDataPathBtn = new System.Windows.Forms.Button();
|
|
this.SelectProjectPathBtn = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(143, 63);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "工程路径";
|
|
//
|
|
// ProjectPathTextBox
|
|
//
|
|
this.ProjectPathTextBox.Location = new System.Drawing.Point(217, 53);
|
|
this.ProjectPathTextBox.Name = "ProjectPathTextBox";
|
|
this.ProjectPathTextBox.ReadOnly = true;
|
|
this.ProjectPathTextBox.Size = new System.Drawing.Size(205, 21);
|
|
this.ProjectPathTextBox.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(143, 113);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(53, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "数据路径";
|
|
//
|
|
// CreateProjectBtn
|
|
//
|
|
this.CreateProjectBtn.Location = new System.Drawing.Point(157, 230);
|
|
this.CreateProjectBtn.Name = "CreateProjectBtn";
|
|
this.CreateProjectBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.CreateProjectBtn.TabIndex = 3;
|
|
this.CreateProjectBtn.Text = "创建工程";
|
|
this.CreateProjectBtn.UseVisualStyleBackColor = true;
|
|
this.CreateProjectBtn.Click += new System.EventHandler(this.CreateProjectBtn_Click);
|
|
//
|
|
// Cancel
|
|
//
|
|
this.Cancel.Location = new System.Drawing.Point(397, 229);
|
|
this.Cancel.Name = "Cancel";
|
|
this.Cancel.Size = new System.Drawing.Size(75, 23);
|
|
this.Cancel.TabIndex = 4;
|
|
this.Cancel.Text = "取消";
|
|
this.Cancel.UseVisualStyleBackColor = true;
|
|
this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
|
|
//
|
|
// DataPathTextBox
|
|
//
|
|
this.DataPathTextBox.Location = new System.Drawing.Point(217, 104);
|
|
this.DataPathTextBox.Name = "DataPathTextBox";
|
|
this.DataPathTextBox.ReadOnly = true;
|
|
this.DataPathTextBox.Size = new System.Drawing.Size(205, 21);
|
|
this.DataPathTextBox.TabIndex = 1;
|
|
//
|
|
// SelectDataPathBtn
|
|
//
|
|
this.SelectDataPathBtn.Location = new System.Drawing.Point(461, 104);
|
|
this.SelectDataPathBtn.Name = "SelectDataPathBtn";
|
|
this.SelectDataPathBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.SelectDataPathBtn.TabIndex = 4;
|
|
this.SelectDataPathBtn.Text = "选择";
|
|
this.SelectDataPathBtn.UseVisualStyleBackColor = true;
|
|
this.SelectDataPathBtn.Click += new System.EventHandler(this.SelectDataPathBtn_Click);
|
|
//
|
|
// SelectProjectPathBtn
|
|
//
|
|
this.SelectProjectPathBtn.Location = new System.Drawing.Point(461, 52);
|
|
this.SelectProjectPathBtn.Name = "SelectProjectPathBtn";
|
|
this.SelectProjectPathBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.SelectProjectPathBtn.TabIndex = 5;
|
|
this.SelectProjectPathBtn.Text = "选择";
|
|
this.SelectProjectPathBtn.UseVisualStyleBackColor = true;
|
|
this.SelectProjectPathBtn.Click += new System.EventHandler(this.SelectProjectPathBtn_Click);
|
|
//
|
|
// NewProjectWindow
|
|
//
|
|
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.SelectProjectPathBtn);
|
|
this.Controls.Add(this.SelectDataPathBtn);
|
|
this.Controls.Add(this.Cancel);
|
|
this.Controls.Add(this.CreateProjectBtn);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.DataPathTextBox);
|
|
this.Controls.Add(this.ProjectPathTextBox);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "NewProjectWindow";
|
|
this.Text = "创建工程";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox ProjectPathTextBox;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button CreateProjectBtn;
|
|
private System.Windows.Forms.Button Cancel;
|
|
private System.Windows.Forms.TextBox DataPathTextBox;
|
|
private System.Windows.Forms.Button SelectDataPathBtn;
|
|
private System.Windows.Forms.Button SelectProjectPathBtn;
|
|
}
|
|
} |