完成调用丰的sif python算法 → 所有数据处理功能完成

This commit is contained in:
2022-01-14 11:56:12 +08:00
parent 8c78a0d715
commit a7cb3885db
16 changed files with 696 additions and 59 deletions

View File

@ -36,12 +36,15 @@
this.DataPathTextBox = new System.Windows.Forms.TextBox();
this.SelectDataPathBtn = new System.Windows.Forms.Button();
this.SelectProjectPathBtn = new System.Windows.Forms.Button();
this.CalFilePathTextBox = new System.Windows.Forms.TextBox();
this.SelectCalFilePathBtn = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(143, 63);
this.label1.Location = new System.Drawing.Point(36, 41);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 0;
@ -49,7 +52,7 @@
//
// ProjectPathTextBox
//
this.ProjectPathTextBox.Location = new System.Drawing.Point(217, 53);
this.ProjectPathTextBox.Location = new System.Drawing.Point(115, 37);
this.ProjectPathTextBox.Name = "ProjectPathTextBox";
this.ProjectPathTextBox.ReadOnly = true;
this.ProjectPathTextBox.Size = new System.Drawing.Size(205, 21);
@ -58,7 +61,7 @@
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(143, 113);
this.label2.Location = new System.Drawing.Point(36, 154);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
@ -66,7 +69,7 @@
//
// CreateProjectBtn
//
this.CreateProjectBtn.Location = new System.Drawing.Point(157, 230);
this.CreateProjectBtn.Location = new System.Drawing.Point(77, 217);
this.CreateProjectBtn.Name = "CreateProjectBtn";
this.CreateProjectBtn.Size = new System.Drawing.Size(75, 23);
this.CreateProjectBtn.TabIndex = 3;
@ -76,7 +79,7 @@
//
// Cancel
//
this.Cancel.Location = new System.Drawing.Point(397, 229);
this.Cancel.Location = new System.Drawing.Point(310, 217);
this.Cancel.Name = "Cancel";
this.Cancel.Size = new System.Drawing.Size(75, 23);
this.Cancel.TabIndex = 4;
@ -86,7 +89,7 @@
//
// DataPathTextBox
//
this.DataPathTextBox.Location = new System.Drawing.Point(217, 104);
this.DataPathTextBox.Location = new System.Drawing.Point(115, 150);
this.DataPathTextBox.Name = "DataPathTextBox";
this.DataPathTextBox.ReadOnly = true;
this.DataPathTextBox.Size = new System.Drawing.Size(205, 21);
@ -94,7 +97,7 @@
//
// SelectDataPathBtn
//
this.SelectDataPathBtn.Location = new System.Drawing.Point(461, 104);
this.SelectDataPathBtn.Location = new System.Drawing.Point(374, 149);
this.SelectDataPathBtn.Name = "SelectDataPathBtn";
this.SelectDataPathBtn.Size = new System.Drawing.Size(75, 23);
this.SelectDataPathBtn.TabIndex = 4;
@ -104,7 +107,7 @@
//
// SelectProjectPathBtn
//
this.SelectProjectPathBtn.Location = new System.Drawing.Point(461, 52);
this.SelectProjectPathBtn.Location = new System.Drawing.Point(374, 36);
this.SelectProjectPathBtn.Name = "SelectProjectPathBtn";
this.SelectProjectPathBtn.Size = new System.Drawing.Size(75, 23);
this.SelectProjectPathBtn.TabIndex = 5;
@ -112,11 +115,41 @@
this.SelectProjectPathBtn.UseVisualStyleBackColor = true;
this.SelectProjectPathBtn.Click += new System.EventHandler(this.SelectProjectPathBtn_Click);
//
// CalFilePathTextBox
//
this.CalFilePathTextBox.Location = new System.Drawing.Point(115, 91);
this.CalFilePathTextBox.Name = "CalFilePathTextBox";
this.CalFilePathTextBox.ReadOnly = true;
this.CalFilePathTextBox.Size = new System.Drawing.Size(205, 21);
this.CalFilePathTextBox.TabIndex = 7;
//
// SelectCalFilePathBtn
//
this.SelectCalFilePathBtn.Location = new System.Drawing.Point(374, 90);
this.SelectCalFilePathBtn.Name = "SelectCalFilePathBtn";
this.SelectCalFilePathBtn.Size = new System.Drawing.Size(75, 23);
this.SelectCalFilePathBtn.TabIndex = 8;
this.SelectCalFilePathBtn.Text = "选择";
this.SelectCalFilePathBtn.UseVisualStyleBackColor = true;
this.SelectCalFilePathBtn.Click += new System.EventHandler(this.SelectCalFilePathBtn_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(36, 95);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 9;
this.label3.Text = "定标文件";
//
// 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.ClientSize = new System.Drawing.Size(494, 292);
this.Controls.Add(this.label3);
this.Controls.Add(this.SelectCalFilePathBtn);
this.Controls.Add(this.CalFilePathTextBox);
this.Controls.Add(this.SelectProjectPathBtn);
this.Controls.Add(this.SelectDataPathBtn);
this.Controls.Add(this.Cancel);
@ -142,5 +175,8 @@
private System.Windows.Forms.TextBox DataPathTextBox;
private System.Windows.Forms.Button SelectDataPathBtn;
private System.Windows.Forms.Button SelectProjectPathBtn;
private System.Windows.Forms.TextBox CalFilePathTextBox;
private System.Windows.Forms.Button SelectCalFilePathBtn;
private System.Windows.Forms.Label label3;
}
}