You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/UCDraw/KepGridEditor/FormWellAdjustSetting.Desig...

230 lines
12 KiB
C#

1 month ago
namespace KepGridEditor
{
partial class FormWellAdjustSetting
{
/// <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.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.txtRadius = new DevExpress.XtraEditors.TextEdit();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.txtDiffrence = new DevExpress.XtraEditors.TextEdit();
this.btnOK = new DevExpress.XtraEditors.SimpleButton();
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.txtFactor = new DevExpress.XtraEditors.TextEdit();
this.labelControlMode = new DevExpress.XtraEditors.LabelControl();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.textEditDilution = new DevExpress.XtraEditors.TextEdit();
this.comboBoxEditMode = new DevExpress.XtraEditors.ComboBoxEdit();
((System.ComponentModel.ISupportInitialize)(this.txtRadius.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtDiffrence.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtFactor.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditDilution.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMode.Properties)).BeginInit();
this.SuspendLayout();
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(37, 44);
this.labelControl1.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(60, 14);
this.labelControl1.TabIndex = 1;
this.labelControl1.Text = "影响半径:";
//
// txtRadius
//
this.txtRadius.Location = new System.Drawing.Point(101, 42);
this.txtRadius.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.txtRadius.Name = "txtRadius";
this.txtRadius.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
this.txtRadius.Properties.Mask.EditMask = "\\d+(\\.\\d{0,2})?";
this.txtRadius.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
this.txtRadius.Properties.NullText = "0";
this.txtRadius.Properties.NullValuePrompt = "输入大于0的数据";
this.txtRadius.Size = new System.Drawing.Size(108, 20);
this.txtRadius.TabIndex = 2;
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(11, 115);
this.labelControl2.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(84, 14);
this.labelControl2.TabIndex = 3;
this.labelControl2.Text = "井点误差范围:";
//
// txtDiffrence
//
this.txtDiffrence.Location = new System.Drawing.Point(101, 112);
this.txtDiffrence.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.txtDiffrence.Name = "txtDiffrence";
this.txtDiffrence.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
this.txtDiffrence.Properties.Mask.EditMask = "\\d+(\\.\\d{0,2})?";
this.txtDiffrence.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
this.txtDiffrence.Properties.NullText = "0";
this.txtDiffrence.Properties.NullValuePrompt = "输入大于0的数据";
this.txtDiffrence.Size = new System.Drawing.Size(108, 20);
this.txtDiffrence.TabIndex = 3;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(44, 179);
this.btnOK.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(67, 22);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "确定";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(128, 179);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(67, 22);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "取消";
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// labelControl3
//
this.labelControl3.Location = new System.Drawing.Point(11, 80);
this.labelControl3.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.labelControl3.Name = "labelControl3";
this.labelControl3.Size = new System.Drawing.Size(84, 14);
this.labelControl3.TabIndex = 6;
this.labelControl3.Text = "下降曲线系数:";
//
// txtFactor
//
this.txtFactor.Location = new System.Drawing.Point(101, 77);
this.txtFactor.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.txtFactor.Name = "txtFactor";
this.txtFactor.Properties.Mask.EditMask = "(0(\\.\\d+)?|1(\\.0+)?)";
this.txtFactor.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
this.txtFactor.Properties.NullText = "0";
this.txtFactor.Size = new System.Drawing.Size(108, 20);
this.txtFactor.TabIndex = 7;
this.txtFactor.ToolTip = "0到1之间的数字";
//
// labelControlMode
//
this.labelControlMode.Location = new System.Drawing.Point(37, 11);
this.labelControlMode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.labelControlMode.Name = "labelControlMode";
this.labelControlMode.Size = new System.Drawing.Size(60, 14);
this.labelControlMode.TabIndex = 0;
this.labelControlMode.Text = "校正算法:";
//
// labelControl4
//
this.labelControl4.Location = new System.Drawing.Point(35, 150);
this.labelControl4.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.labelControl4.Name = "labelControl4";
this.labelControl4.Size = new System.Drawing.Size(60, 14);
this.labelControl4.TabIndex = 6;
this.labelControl4.Text = "抽稀倍数:";
//
// textEditDilution
//
this.textEditDilution.Location = new System.Drawing.Point(101, 147);
this.textEditDilution.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.textEditDilution.Name = "textEditDilution";
this.textEditDilution.Properties.Mask.EditMask = "\\d+(\\.\\d{0,2})?";
this.textEditDilution.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
this.textEditDilution.Properties.NullText = "0";
this.textEditDilution.Size = new System.Drawing.Size(108, 20);
this.textEditDilution.TabIndex = 7;
this.textEditDilution.ToolTip = "大于等于1的数字";
//
// comboBoxEditMode
//
this.comboBoxEditMode.EditValue = "默认";
this.comboBoxEditMode.Location = new System.Drawing.Point(101, 8);
this.comboBoxEditMode.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.comboBoxEditMode.Name = "comboBoxEditMode";
this.comboBoxEditMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.comboBoxEditMode.Properties.Items.AddRange(new object[] {
"默认",
"RFB"});
this.comboBoxEditMode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
this.comboBoxEditMode.Size = new System.Drawing.Size(108, 20);
this.comboBoxEditMode.TabIndex = 0;
this.comboBoxEditMode.SelectedIndexChanged += new System.EventHandler(this.comboBoxEditMode_SelectedIndexChanged);
//
// FormWellAdjustSetting
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(227, 219);
this.Controls.Add(this.labelControlMode);
this.Controls.Add(this.textEditDilution);
this.Controls.Add(this.txtFactor);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.labelControl4);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.labelControl3);
this.Controls.Add(this.txtDiffrence);
this.Controls.Add(this.labelControl2);
this.Controls.Add(this.txtRadius);
this.Controls.Add(this.labelControl1);
this.Controls.Add(this.comboBoxEditMode);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormWellAdjustSetting";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "井点匹配";
((System.ComponentModel.ISupportInitialize)(this.txtRadius.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtDiffrence.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtFactor.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.textEditDilution.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMode.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DevExpress.XtraEditors.LabelControl labelControl1;
private DevExpress.XtraEditors.TextEdit txtRadius;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.TextEdit txtDiffrence;
private DevExpress.XtraEditors.SimpleButton btnOK;
private DevExpress.XtraEditors.SimpleButton btnCancel;
private DevExpress.XtraEditors.LabelControl labelControl3;
private DevExpress.XtraEditors.TextEdit txtFactor;
private DevExpress.XtraEditors.LabelControl labelControlMode;
private DevExpress.XtraEditors.LabelControl labelControl4;
private DevExpress.XtraEditors.TextEdit textEditDilution;
private DevExpress.XtraEditors.ComboBoxEdit comboBoxEditMode;
}
}