|
|
namespace QuikGridCS
|
|
|
{
|
|
|
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.txtInput = new System.Windows.Forms.TextBox();
|
|
|
this.btnInputFile = new System.Windows.Forms.Button();
|
|
|
this.btnOutputFile = new System.Windows.Forms.Button();
|
|
|
this.txtOutput = new System.Windows.Forms.TextBox();
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
|
this.label10 = new System.Windows.Forms.Label();
|
|
|
this.label8 = new System.Windows.Forms.Label();
|
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
|
this.label9 = new System.Windows.Forms.Label();
|
|
|
this.label7 = new System.Windows.Forms.Label();
|
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
|
this.txtZMax = new System.Windows.Forms.TextBox();
|
|
|
this.txtYMax = new System.Windows.Forms.TextBox();
|
|
|
this.txtXMax = new System.Windows.Forms.TextBox();
|
|
|
this.txtYCount = new System.Windows.Forms.TextBox();
|
|
|
this.txtZMin = new System.Windows.Forms.TextBox();
|
|
|
this.txtYMin = new System.Windows.Forms.TextBox();
|
|
|
this.txtXMin = new System.Windows.Forms.TextBox();
|
|
|
this.txtXCount = new System.Windows.Forms.TextBox();
|
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
|
this.btnOutput = new System.Windows.Forms.Button();
|
|
|
this.btnExit = new System.Windows.Forms.Button();
|
|
|
this.label11 = new System.Windows.Forms.Label();
|
|
|
this.txtOutputKev = new System.Windows.Forms.TextBox();
|
|
|
this.btnOutputFileKev = new System.Windows.Forms.Button();
|
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
|
this.txtContourSpace = new System.Windows.Forms.TextBox();
|
|
|
this.txtContourLableSpace = new System.Windows.Forms.TextBox();
|
|
|
this.label14 = new System.Windows.Forms.Label();
|
|
|
this.txtSmoothFactor = new System.Windows.Forms.TextBox();
|
|
|
this.groupBox1.SuspendLayout();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// label1
|
|
|
//
|
|
|
this.label1.AutoSize = true;
|
|
|
this.label1.Location = new System.Drawing.Point(69, 57);
|
|
|
this.label1.Name = "label1";
|
|
|
this.label1.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label1.TabIndex = 0;
|
|
|
this.label1.Text = "散点文件";
|
|
|
//
|
|
|
// txtInput
|
|
|
//
|
|
|
this.txtInput.Location = new System.Drawing.Point(182, 52);
|
|
|
this.txtInput.Name = "txtInput";
|
|
|
this.txtInput.Size = new System.Drawing.Size(724, 35);
|
|
|
this.txtInput.TabIndex = 1;
|
|
|
this.txtInput.Text = "C:\\temp\\k2.xyz";
|
|
|
//
|
|
|
// btnInputFile
|
|
|
//
|
|
|
this.btnInputFile.Location = new System.Drawing.Point(911, 51);
|
|
|
this.btnInputFile.Name = "btnInputFile";
|
|
|
this.btnInputFile.Size = new System.Drawing.Size(66, 40);
|
|
|
this.btnInputFile.TabIndex = 2;
|
|
|
this.btnInputFile.Text = "...";
|
|
|
this.btnInputFile.UseVisualStyleBackColor = true;
|
|
|
this.btnInputFile.Click += new System.EventHandler(this.btnInputFile_Click);
|
|
|
//
|
|
|
// btnOutputFile
|
|
|
//
|
|
|
this.btnOutputFile.Location = new System.Drawing.Point(911, 118);
|
|
|
this.btnOutputFile.Name = "btnOutputFile";
|
|
|
this.btnOutputFile.Size = new System.Drawing.Size(66, 40);
|
|
|
this.btnOutputFile.TabIndex = 5;
|
|
|
this.btnOutputFile.Text = "...";
|
|
|
this.btnOutputFile.UseVisualStyleBackColor = true;
|
|
|
this.btnOutputFile.Click += new System.EventHandler(this.btnOutputFile_Click);
|
|
|
//
|
|
|
// txtOutput
|
|
|
//
|
|
|
this.txtOutput.Location = new System.Drawing.Point(182, 119);
|
|
|
this.txtOutput.Name = "txtOutput";
|
|
|
this.txtOutput.Size = new System.Drawing.Size(724, 35);
|
|
|
this.txtOutput.TabIndex = 4;
|
|
|
this.txtOutput.Text = "C:\\temp\\111.grd";
|
|
|
//
|
|
|
// label2
|
|
|
//
|
|
|
this.label2.AutoSize = true;
|
|
|
this.label2.Location = new System.Drawing.Point(69, 124);
|
|
|
this.label2.Name = "label2";
|
|
|
this.label2.Size = new System.Drawing.Size(94, 24);
|
|
|
this.label2.TabIndex = 3;
|
|
|
this.label2.Text = "输出grd";
|
|
|
//
|
|
|
// groupBox1
|
|
|
//
|
|
|
this.groupBox1.Controls.Add(this.label10);
|
|
|
this.groupBox1.Controls.Add(this.label8);
|
|
|
this.groupBox1.Controls.Add(this.label6);
|
|
|
this.groupBox1.Controls.Add(this.label9);
|
|
|
this.groupBox1.Controls.Add(this.label7);
|
|
|
this.groupBox1.Controls.Add(this.label5);
|
|
|
this.groupBox1.Controls.Add(this.txtZMax);
|
|
|
this.groupBox1.Controls.Add(this.txtYMax);
|
|
|
this.groupBox1.Controls.Add(this.txtXMax);
|
|
|
this.groupBox1.Controls.Add(this.txtContourLableSpace);
|
|
|
this.groupBox1.Controls.Add(this.txtYCount);
|
|
|
this.groupBox1.Controls.Add(this.txtZMin);
|
|
|
this.groupBox1.Controls.Add(this.txtYMin);
|
|
|
this.groupBox1.Controls.Add(this.txtXMin);
|
|
|
this.groupBox1.Controls.Add(this.txtSmoothFactor);
|
|
|
this.groupBox1.Controls.Add(this.txtContourSpace);
|
|
|
this.groupBox1.Controls.Add(this.label13);
|
|
|
this.groupBox1.Controls.Add(this.txtXCount);
|
|
|
this.groupBox1.Controls.Add(this.label14);
|
|
|
this.groupBox1.Controls.Add(this.label12);
|
|
|
this.groupBox1.Controls.Add(this.label4);
|
|
|
this.groupBox1.Controls.Add(this.label3);
|
|
|
this.groupBox1.Location = new System.Drawing.Point(93, 277);
|
|
|
this.groupBox1.Name = "groupBox1";
|
|
|
this.groupBox1.Size = new System.Drawing.Size(879, 421);
|
|
|
this.groupBox1.TabIndex = 6;
|
|
|
this.groupBox1.TabStop = false;
|
|
|
this.groupBox1.Text = "参数设置";
|
|
|
//
|
|
|
// label10
|
|
|
//
|
|
|
this.label10.AutoSize = true;
|
|
|
this.label10.Location = new System.Drawing.Point(464, 176);
|
|
|
this.label10.Name = "label10";
|
|
|
this.label10.Size = new System.Drawing.Size(34, 24);
|
|
|
this.label10.TabIndex = 3;
|
|
|
this.label10.Text = "—";
|
|
|
//
|
|
|
// label8
|
|
|
//
|
|
|
this.label8.AutoSize = true;
|
|
|
this.label8.Location = new System.Drawing.Point(464, 117);
|
|
|
this.label8.Name = "label8";
|
|
|
this.label8.Size = new System.Drawing.Size(34, 24);
|
|
|
this.label8.TabIndex = 3;
|
|
|
this.label8.Text = "—";
|
|
|
//
|
|
|
// label6
|
|
|
//
|
|
|
this.label6.AutoSize = true;
|
|
|
this.label6.Location = new System.Drawing.Point(464, 57);
|
|
|
this.label6.Name = "label6";
|
|
|
this.label6.Size = new System.Drawing.Size(34, 24);
|
|
|
this.label6.TabIndex = 3;
|
|
|
this.label6.Text = "—";
|
|
|
//
|
|
|
// label9
|
|
|
//
|
|
|
this.label9.AutoSize = true;
|
|
|
this.label9.Location = new System.Drawing.Point(81, 176);
|
|
|
this.label9.Name = "label9";
|
|
|
this.label9.Size = new System.Drawing.Size(70, 24);
|
|
|
this.label9.TabIndex = 2;
|
|
|
this.label9.Text = "Z范围";
|
|
|
//
|
|
|
// label7
|
|
|
//
|
|
|
this.label7.AutoSize = true;
|
|
|
this.label7.Location = new System.Drawing.Point(81, 117);
|
|
|
this.label7.Name = "label7";
|
|
|
this.label7.Size = new System.Drawing.Size(70, 24);
|
|
|
this.label7.TabIndex = 2;
|
|
|
this.label7.Text = "Y范围";
|
|
|
//
|
|
|
// label5
|
|
|
//
|
|
|
this.label5.AutoSize = true;
|
|
|
this.label5.Location = new System.Drawing.Point(81, 57);
|
|
|
this.label5.Name = "label5";
|
|
|
this.label5.Size = new System.Drawing.Size(70, 24);
|
|
|
this.label5.TabIndex = 2;
|
|
|
this.label5.Text = "X范围";
|
|
|
//
|
|
|
// txtZMax
|
|
|
//
|
|
|
this.txtZMax.Location = new System.Drawing.Point(530, 171);
|
|
|
this.txtZMax.Name = "txtZMax";
|
|
|
this.txtZMax.ReadOnly = true;
|
|
|
this.txtZMax.Size = new System.Drawing.Size(283, 35);
|
|
|
this.txtZMax.TabIndex = 1;
|
|
|
//
|
|
|
// txtYMax
|
|
|
//
|
|
|
this.txtYMax.Location = new System.Drawing.Point(530, 112);
|
|
|
this.txtYMax.Name = "txtYMax";
|
|
|
this.txtYMax.ReadOnly = true;
|
|
|
this.txtYMax.Size = new System.Drawing.Size(283, 35);
|
|
|
this.txtYMax.TabIndex = 1;
|
|
|
//
|
|
|
// txtXMax
|
|
|
//
|
|
|
this.txtXMax.Location = new System.Drawing.Point(530, 52);
|
|
|
this.txtXMax.Name = "txtXMax";
|
|
|
this.txtXMax.ReadOnly = true;
|
|
|
this.txtXMax.Size = new System.Drawing.Size(283, 35);
|
|
|
this.txtXMax.TabIndex = 1;
|
|
|
//
|
|
|
// txtYCount
|
|
|
//
|
|
|
this.txtYCount.Location = new System.Drawing.Point(543, 235);
|
|
|
this.txtYCount.Name = "txtYCount";
|
|
|
this.txtYCount.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtYCount.TabIndex = 1;
|
|
|
this.txtYCount.Text = "200";
|
|
|
//
|
|
|
// txtZMin
|
|
|
//
|
|
|
this.txtZMin.Location = new System.Drawing.Point(176, 171);
|
|
|
this.txtZMin.Name = "txtZMin";
|
|
|
this.txtZMin.ReadOnly = true;
|
|
|
this.txtZMin.Size = new System.Drawing.Size(264, 35);
|
|
|
this.txtZMin.TabIndex = 1;
|
|
|
//
|
|
|
// txtYMin
|
|
|
//
|
|
|
this.txtYMin.Location = new System.Drawing.Point(176, 112);
|
|
|
this.txtYMin.Name = "txtYMin";
|
|
|
this.txtYMin.ReadOnly = true;
|
|
|
this.txtYMin.Size = new System.Drawing.Size(264, 35);
|
|
|
this.txtYMin.TabIndex = 1;
|
|
|
//
|
|
|
// txtXMin
|
|
|
//
|
|
|
this.txtXMin.Location = new System.Drawing.Point(176, 52);
|
|
|
this.txtXMin.Name = "txtXMin";
|
|
|
this.txtXMin.ReadOnly = true;
|
|
|
this.txtXMin.Size = new System.Drawing.Size(264, 35);
|
|
|
this.txtXMin.TabIndex = 1;
|
|
|
//
|
|
|
// txtXCount
|
|
|
//
|
|
|
this.txtXCount.Location = new System.Drawing.Point(176, 235);
|
|
|
this.txtXCount.Name = "txtXCount";
|
|
|
this.txtXCount.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtXCount.TabIndex = 1;
|
|
|
this.txtXCount.Text = "400";
|
|
|
//
|
|
|
// label4
|
|
|
//
|
|
|
this.label4.AutoSize = true;
|
|
|
this.label4.Location = new System.Drawing.Point(408, 240);
|
|
|
this.label4.Name = "label4";
|
|
|
this.label4.Size = new System.Drawing.Size(118, 24);
|
|
|
this.label4.TabIndex = 0;
|
|
|
this.label4.Text = "Y网格数量";
|
|
|
//
|
|
|
// label3
|
|
|
//
|
|
|
this.label3.AutoSize = true;
|
|
|
this.label3.Location = new System.Drawing.Point(35, 240);
|
|
|
this.label3.Name = "label3";
|
|
|
this.label3.Size = new System.Drawing.Size(118, 24);
|
|
|
this.label3.TabIndex = 0;
|
|
|
this.label3.Text = "X网格数量";
|
|
|
//
|
|
|
// btnOutput
|
|
|
//
|
|
|
this.btnOutput.Location = new System.Drawing.Point(337, 748);
|
|
|
this.btnOutput.Name = "btnOutput";
|
|
|
this.btnOutput.Size = new System.Drawing.Size(166, 62);
|
|
|
this.btnOutput.TabIndex = 7;
|
|
|
this.btnOutput.Text = "输出图件";
|
|
|
this.btnOutput.UseVisualStyleBackColor = true;
|
|
|
this.btnOutput.Click += new System.EventHandler(this.btnOutput_Click);
|
|
|
//
|
|
|
// btnExit
|
|
|
//
|
|
|
this.btnExit.Location = new System.Drawing.Point(544, 748);
|
|
|
this.btnExit.Name = "btnExit";
|
|
|
this.btnExit.Size = new System.Drawing.Size(166, 62);
|
|
|
this.btnExit.TabIndex = 7;
|
|
|
this.btnExit.Text = "退出";
|
|
|
this.btnExit.UseVisualStyleBackColor = true;
|
|
|
//
|
|
|
// label11
|
|
|
//
|
|
|
this.label11.AutoSize = true;
|
|
|
this.label11.Location = new System.Drawing.Point(69, 193);
|
|
|
this.label11.Name = "label11";
|
|
|
this.label11.Size = new System.Drawing.Size(94, 24);
|
|
|
this.label11.TabIndex = 3;
|
|
|
this.label11.Text = "输出kev";
|
|
|
//
|
|
|
// txtOutputKev
|
|
|
//
|
|
|
this.txtOutputKev.Location = new System.Drawing.Point(182, 188);
|
|
|
this.txtOutputKev.Name = "txtOutputKev";
|
|
|
this.txtOutputKev.Size = new System.Drawing.Size(724, 35);
|
|
|
this.txtOutputKev.TabIndex = 4;
|
|
|
//
|
|
|
// btnOutputFileKev
|
|
|
//
|
|
|
this.btnOutputFileKev.Location = new System.Drawing.Point(911, 187);
|
|
|
this.btnOutputFileKev.Name = "btnOutputFileKev";
|
|
|
this.btnOutputFileKev.Size = new System.Drawing.Size(66, 40);
|
|
|
this.btnOutputFileKev.TabIndex = 5;
|
|
|
this.btnOutputFileKev.Text = "...";
|
|
|
this.btnOutputFileKev.UseVisualStyleBackColor = true;
|
|
|
this.btnOutputFileKev.Click += new System.EventHandler(this.btnOutputFileKev_Click);
|
|
|
//
|
|
|
// label12
|
|
|
//
|
|
|
this.label12.AutoSize = true;
|
|
|
this.label12.Location = new System.Drawing.Point(11, 299);
|
|
|
this.label12.Name = "label12";
|
|
|
this.label12.Size = new System.Drawing.Size(142, 24);
|
|
|
this.label12.TabIndex = 0;
|
|
|
this.label12.Text = " 等值线间隔";
|
|
|
//
|
|
|
// label13
|
|
|
//
|
|
|
this.label13.AutoSize = true;
|
|
|
this.label13.Location = new System.Drawing.Point(420, 299);
|
|
|
this.label13.Name = "label13";
|
|
|
this.label13.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label13.TabIndex = 0;
|
|
|
this.label13.Text = "标注间隔";
|
|
|
//
|
|
|
// txtContourSpace
|
|
|
//
|
|
|
this.txtContourSpace.Location = new System.Drawing.Point(176, 296);
|
|
|
this.txtContourSpace.Name = "txtContourSpace";
|
|
|
this.txtContourSpace.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtContourSpace.TabIndex = 1;
|
|
|
this.txtContourSpace.Text = "5.0";
|
|
|
//
|
|
|
// txtContourLableSpace
|
|
|
//
|
|
|
this.txtContourLableSpace.Location = new System.Drawing.Point(543, 296);
|
|
|
this.txtContourLableSpace.Name = "txtContourLableSpace";
|
|
|
this.txtContourLableSpace.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtContourLableSpace.TabIndex = 1;
|
|
|
this.txtContourLableSpace.Text = "5";
|
|
|
//
|
|
|
// label14
|
|
|
//
|
|
|
this.label14.AutoSize = true;
|
|
|
this.label14.Location = new System.Drawing.Point(45, 362);
|
|
|
this.label14.Name = "label14";
|
|
|
this.label14.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label14.TabIndex = 0;
|
|
|
this.label14.Text = "平滑系数";
|
|
|
//
|
|
|
// txtSmoothFactor
|
|
|
//
|
|
|
this.txtSmoothFactor.Location = new System.Drawing.Point(176, 357);
|
|
|
this.txtSmoothFactor.Name = "txtSmoothFactor";
|
|
|
this.txtSmoothFactor.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtSmoothFactor.TabIndex = 1;
|
|
|
this.txtSmoothFactor.Text = "1.0";
|
|
|
//
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(1047, 859);
|
|
|
this.Controls.Add(this.btnExit);
|
|
|
this.Controls.Add(this.btnOutput);
|
|
|
this.Controls.Add(this.groupBox1);
|
|
|
this.Controls.Add(this.btnOutputFileKev);
|
|
|
this.Controls.Add(this.btnOutputFile);
|
|
|
this.Controls.Add(this.txtOutputKev);
|
|
|
this.Controls.Add(this.label11);
|
|
|
this.Controls.Add(this.txtOutput);
|
|
|
this.Controls.Add(this.label2);
|
|
|
this.Controls.Add(this.btnInputFile);
|
|
|
this.Controls.Add(this.txtInput);
|
|
|
this.Controls.Add(this.label1);
|
|
|
this.Name = "Form1";
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
this.Text = "快速网格化";
|
|
|
this.groupBox1.ResumeLayout(false);
|
|
|
this.groupBox1.PerformLayout();
|
|
|
this.ResumeLayout(false);
|
|
|
this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
|
private System.Windows.Forms.TextBox txtInput;
|
|
|
private System.Windows.Forms.Button btnInputFile;
|
|
|
private System.Windows.Forms.Button btnOutputFile;
|
|
|
private System.Windows.Forms.TextBox txtOutput;
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
|
private System.Windows.Forms.Button btnOutput;
|
|
|
private System.Windows.Forms.Button btnExit;
|
|
|
private System.Windows.Forms.TextBox txtYCount;
|
|
|
private System.Windows.Forms.TextBox txtXCount;
|
|
|
private System.Windows.Forms.Label label4;
|
|
|
private System.Windows.Forms.Label label3;
|
|
|
private System.Windows.Forms.Label label7;
|
|
|
private System.Windows.Forms.Label label5;
|
|
|
private System.Windows.Forms.TextBox txtYMax;
|
|
|
private System.Windows.Forms.TextBox txtXMax;
|
|
|
private System.Windows.Forms.TextBox txtYMin;
|
|
|
private System.Windows.Forms.TextBox txtXMin;
|
|
|
private System.Windows.Forms.Label label10;
|
|
|
private System.Windows.Forms.Label label8;
|
|
|
private System.Windows.Forms.Label label6;
|
|
|
private System.Windows.Forms.Label label9;
|
|
|
private System.Windows.Forms.TextBox txtZMax;
|
|
|
private System.Windows.Forms.TextBox txtZMin;
|
|
|
private System.Windows.Forms.Label label11;
|
|
|
private System.Windows.Forms.TextBox txtOutputKev;
|
|
|
private System.Windows.Forms.Button btnOutputFileKev;
|
|
|
private System.Windows.Forms.TextBox txtContourLableSpace;
|
|
|
private System.Windows.Forms.TextBox txtContourSpace;
|
|
|
private System.Windows.Forms.Label label13;
|
|
|
private System.Windows.Forms.Label label12;
|
|
|
private System.Windows.Forms.TextBox txtSmoothFactor;
|
|
|
private System.Windows.Forms.Label label14;
|
|
|
}
|
|
|
}
|
|
|
|