|
|
namespace TestNeighborInterpolator
|
|
|
{
|
|
|
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.btnOK = new System.Windows.Forms.Button();
|
|
|
this.txtInput = new System.Windows.Forms.TextBox();
|
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
|
this.btnFileInput = new System.Windows.Forms.Button();
|
|
|
this.txtOutput = new System.Windows.Forms.TextBox();
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
this.btnFileOutput = new System.Windows.Forms.Button();
|
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
|
this.cmbFunction = new System.Windows.Forms.ComboBox();
|
|
|
this.btnQuit = new System.Windows.Forms.Button();
|
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
|
this.txtSmooth = new System.Windows.Forms.TextBox();
|
|
|
this.txtBorder = new System.Windows.Forms.TextBox();
|
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
|
this.btnBorder = new System.Windows.Forms.Button();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// btnOK
|
|
|
//
|
|
|
this.btnOK.Location = new System.Drawing.Point(347, 451);
|
|
|
this.btnOK.Name = "btnOK";
|
|
|
this.btnOK.Size = new System.Drawing.Size(138, 58);
|
|
|
this.btnOK.TabIndex = 0;
|
|
|
this.btnOK.Text = "执行";
|
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
|
//
|
|
|
// txtInput
|
|
|
//
|
|
|
this.txtInput.Location = new System.Drawing.Point(207, 71);
|
|
|
this.txtInput.Name = "txtInput";
|
|
|
this.txtInput.Size = new System.Drawing.Size(653, 35);
|
|
|
this.txtInput.TabIndex = 1;
|
|
|
//
|
|
|
// label1
|
|
|
//
|
|
|
this.label1.AutoSize = true;
|
|
|
this.label1.Location = new System.Drawing.Point(48, 78);
|
|
|
this.label1.Name = "label1";
|
|
|
this.label1.Size = new System.Drawing.Size(154, 24);
|
|
|
this.label1.TabIndex = 2;
|
|
|
this.label1.Text = "输入散点文件";
|
|
|
//
|
|
|
// btnFileInput
|
|
|
//
|
|
|
this.btnFileInput.Font = new System.Drawing.Font("黑体", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
this.btnFileInput.Location = new System.Drawing.Point(862, 71);
|
|
|
this.btnFileInput.Name = "btnFileInput";
|
|
|
this.btnFileInput.Size = new System.Drawing.Size(68, 44);
|
|
|
this.btnFileInput.TabIndex = 3;
|
|
|
this.btnFileInput.Text = "⋯";
|
|
|
this.btnFileInput.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
|
this.btnFileInput.UseVisualStyleBackColor = true;
|
|
|
this.btnFileInput.Click += new System.EventHandler(this.btnFileInput_Click);
|
|
|
//
|
|
|
// txtOutput
|
|
|
//
|
|
|
this.txtOutput.Location = new System.Drawing.Point(207, 144);
|
|
|
this.txtOutput.Name = "txtOutput";
|
|
|
this.txtOutput.Size = new System.Drawing.Size(653, 35);
|
|
|
this.txtOutput.TabIndex = 1;
|
|
|
//
|
|
|
// label2
|
|
|
//
|
|
|
this.label2.AutoSize = true;
|
|
|
this.label2.Location = new System.Drawing.Point(48, 151);
|
|
|
this.label2.Name = "label2";
|
|
|
this.label2.Size = new System.Drawing.Size(154, 24);
|
|
|
this.label2.TabIndex = 2;
|
|
|
this.label2.Text = "输出结果文件";
|
|
|
//
|
|
|
// btnFileOutput
|
|
|
//
|
|
|
this.btnFileOutput.Font = new System.Drawing.Font("黑体", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
this.btnFileOutput.Location = new System.Drawing.Point(862, 144);
|
|
|
this.btnFileOutput.Name = "btnFileOutput";
|
|
|
this.btnFileOutput.Size = new System.Drawing.Size(68, 44);
|
|
|
this.btnFileOutput.TabIndex = 3;
|
|
|
this.btnFileOutput.Text = "⋯";
|
|
|
this.btnFileOutput.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
|
this.btnFileOutput.UseVisualStyleBackColor = true;
|
|
|
this.btnFileOutput.Click += new System.EventHandler(this.btnFileOutput_Click);
|
|
|
//
|
|
|
// label3
|
|
|
//
|
|
|
this.label3.AutoSize = true;
|
|
|
this.label3.Location = new System.Drawing.Point(106, 325);
|
|
|
this.label3.Name = "label3";
|
|
|
this.label3.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label3.TabIndex = 4;
|
|
|
this.label3.Text = "运算方法";
|
|
|
//
|
|
|
// cmbFunction
|
|
|
//
|
|
|
this.cmbFunction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
|
this.cmbFunction.FormattingEnabled = true;
|
|
|
this.cmbFunction.Items.AddRange(new object[] {
|
|
|
"自然临近法",
|
|
|
"最近临近法",
|
|
|
"线性插值法"});
|
|
|
this.cmbFunction.Location = new System.Drawing.Point(217, 320);
|
|
|
this.cmbFunction.Name = "cmbFunction";
|
|
|
this.cmbFunction.Size = new System.Drawing.Size(267, 32);
|
|
|
this.cmbFunction.TabIndex = 5;
|
|
|
//
|
|
|
// btnQuit
|
|
|
//
|
|
|
this.btnQuit.Location = new System.Drawing.Point(513, 451);
|
|
|
this.btnQuit.Name = "btnQuit";
|
|
|
this.btnQuit.Size = new System.Drawing.Size(138, 58);
|
|
|
this.btnQuit.TabIndex = 0;
|
|
|
this.btnQuit.Text = "退出";
|
|
|
this.btnQuit.UseVisualStyleBackColor = true;
|
|
|
this.btnQuit.Click += new System.EventHandler(this.btnQuit_Click);
|
|
|
//
|
|
|
// label4
|
|
|
//
|
|
|
this.label4.AutoSize = true;
|
|
|
this.label4.Location = new System.Drawing.Point(106, 381);
|
|
|
this.label4.Name = "label4";
|
|
|
this.label4.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label4.TabIndex = 6;
|
|
|
this.label4.Text = "光滑系数";
|
|
|
//
|
|
|
// txtSmooth
|
|
|
//
|
|
|
this.txtSmooth.Location = new System.Drawing.Point(217, 371);
|
|
|
this.txtSmooth.Name = "txtSmooth";
|
|
|
this.txtSmooth.Size = new System.Drawing.Size(100, 35);
|
|
|
this.txtSmooth.TabIndex = 7;
|
|
|
//
|
|
|
// txtBorder
|
|
|
//
|
|
|
this.txtBorder.Location = new System.Drawing.Point(207, 221);
|
|
|
this.txtBorder.Name = "txtBorder";
|
|
|
this.txtBorder.Size = new System.Drawing.Size(653, 35);
|
|
|
this.txtBorder.TabIndex = 1;
|
|
|
//
|
|
|
// label5
|
|
|
//
|
|
|
this.label5.AutoSize = true;
|
|
|
this.label5.Location = new System.Drawing.Point(48, 228);
|
|
|
this.label5.Name = "label5";
|
|
|
this.label5.Size = new System.Drawing.Size(106, 24);
|
|
|
this.label5.TabIndex = 2;
|
|
|
this.label5.Text = "边界文件";
|
|
|
//
|
|
|
// btnBorder
|
|
|
//
|
|
|
this.btnBorder.Font = new System.Drawing.Font("黑体", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
this.btnBorder.Location = new System.Drawing.Point(862, 221);
|
|
|
this.btnBorder.Name = "btnBorder";
|
|
|
this.btnBorder.Size = new System.Drawing.Size(68, 44);
|
|
|
this.btnBorder.TabIndex = 3;
|
|
|
this.btnBorder.Text = "⋯";
|
|
|
this.btnBorder.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
|
this.btnBorder.UseVisualStyleBackColor = true;
|
|
|
this.btnBorder.Click += new System.EventHandler(this.btnFileOutput_Click);
|
|
|
//
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(979, 588);
|
|
|
this.Controls.Add(this.txtSmooth);
|
|
|
this.Controls.Add(this.label4);
|
|
|
this.Controls.Add(this.cmbFunction);
|
|
|
this.Controls.Add(this.label3);
|
|
|
this.Controls.Add(this.btnBorder);
|
|
|
this.Controls.Add(this.btnFileOutput);
|
|
|
this.Controls.Add(this.btnFileInput);
|
|
|
this.Controls.Add(this.label5);
|
|
|
this.Controls.Add(this.label2);
|
|
|
this.Controls.Add(this.label1);
|
|
|
this.Controls.Add(this.txtBorder);
|
|
|
this.Controls.Add(this.txtOutput);
|
|
|
this.Controls.Add(this.txtInput);
|
|
|
this.Controls.Add(this.btnQuit);
|
|
|
this.Controls.Add(this.btnOK);
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
|
this.MaximizeBox = false;
|
|
|
this.MinimizeBox = false;
|
|
|
this.Name = "Form1";
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
this.Text = "Form1";
|
|
|
this.ResumeLayout(false);
|
|
|
this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
|
private System.Windows.Forms.TextBox txtInput;
|
|
|
private System.Windows.Forms.Label label1;
|
|
|
private System.Windows.Forms.Button btnFileInput;
|
|
|
private System.Windows.Forms.TextBox txtOutput;
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
private System.Windows.Forms.Button btnFileOutput;
|
|
|
private System.Windows.Forms.Label label3;
|
|
|
private System.Windows.Forms.ComboBox cmbFunction;
|
|
|
private System.Windows.Forms.Button btnQuit;
|
|
|
private System.Windows.Forms.Label label4;
|
|
|
private System.Windows.Forms.TextBox txtSmooth;
|
|
|
private System.Windows.Forms.TextBox txtBorder;
|
|
|
private System.Windows.Forms.Label label5;
|
|
|
private System.Windows.Forms.Button btnBorder;
|
|
|
}
|
|
|
}
|
|
|
|