namespace AStation.WinFrmUI.Chart { partial class InputXYDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl(); this.btnOK = new DevExpress.XtraEditors.SimpleButton(); this.txtX = new DevExpress.XtraEditors.TextEdit(); this.txtY = new DevExpress.XtraEditors.TextEdit(); this.Root = new DevExpress.XtraLayout.LayoutControlGroup(); this.itemX = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem(); this.itemY = new DevExpress.XtraLayout.LayoutControlItem(); this.dxErrorProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit(); this.layoutControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtX.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtY.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.itemX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.itemY)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider1)).BeginInit(); this.SuspendLayout(); // // layoutControl1 // this.layoutControl1.Controls.Add(this.btnOK); this.layoutControl1.Controls.Add(this.txtX); this.layoutControl1.Controls.Add(this.txtY); this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.layoutControl1.Location = new System.Drawing.Point(0, 0); this.layoutControl1.Name = "layoutControl1"; this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(283, 0, 650, 400); this.layoutControl1.Root = this.Root; this.layoutControl1.Size = new System.Drawing.Size(234, 128); this.layoutControl1.TabIndex = 0; this.layoutControl1.Text = "layoutControl1"; // // btnOK // this.btnOK.Appearance.BackColor = DevExpress.LookAndFeel.DXSkinColors.FillColors.Question; this.btnOK.Appearance.Options.UseBackColor = true; this.btnOK.Location = new System.Drawing.Point(70, 92); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(94, 22); this.btnOK.StyleController = this.layoutControl1; this.btnOK.TabIndex = 6; this.btnOK.Text = "确认"; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // txtX // this.txtX.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.txtX.Location = new System.Drawing.Point(44, 20); this.txtX.Name = "txtX"; this.txtX.Properties.Appearance.Options.UseTextOptions = true; this.txtX.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.txtX.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered; this.txtX.Properties.MaskSettings.Set("MaskManagerType", typeof(DevExpress.Data.Mask.NumericMaskManager)); this.txtX.Size = new System.Drawing.Size(170, 20); this.txtX.StyleController = this.layoutControl1; this.txtX.TabIndex = 4; // // txtY // this.txtY.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.txtY.Location = new System.Drawing.Point(44, 60); this.txtY.Name = "txtY"; this.txtY.Properties.Appearance.Options.UseTextOptions = true; this.txtY.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.txtY.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered; this.txtY.Properties.MaskSettings.Set("MaskManagerType", typeof(DevExpress.Data.Mask.NumericMaskManager)); this.txtY.Size = new System.Drawing.Size(170, 20); this.txtY.StyleController = this.layoutControl1; this.txtY.TabIndex = 5; // // Root // this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True; this.Root.GroupBordersVisible = false; this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.itemX, this.layoutControlItem3, this.itemY}); this.Root.Name = "Root"; this.Root.Size = new System.Drawing.Size(234, 128); this.Root.TextVisible = false; // // itemX // this.itemX.Control = this.txtX; this.itemX.Location = new System.Drawing.Point(0, 0); this.itemX.Name = "itemX"; this.itemX.Padding = new DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10); this.itemX.Size = new System.Drawing.Size(214, 40); this.itemX.Text = "X:"; this.itemX.TextSize = new System.Drawing.Size(12, 14); // // layoutControlItem3 // this.layoutControlItem3.Control = this.btnOK; this.layoutControlItem3.Location = new System.Drawing.Point(0, 80); this.layoutControlItem3.Name = "layoutControlItem3"; this.layoutControlItem3.Padding = new DevExpress.XtraLayout.Utils.Padding(60, 60, 2, 2); this.layoutControlItem3.Size = new System.Drawing.Size(214, 28); this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem3.TextVisible = false; // // itemY // this.itemY.Control = this.txtY; this.itemY.Location = new System.Drawing.Point(0, 40); this.itemY.Name = "itemY"; this.itemY.Padding = new DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10); this.itemY.Size = new System.Drawing.Size(214, 40); this.itemY.Text = "Y:"; this.itemY.TextSize = new System.Drawing.Size(12, 14); // // dxErrorProvider1 // this.dxErrorProvider1.ContainerControl = this; // // InputXYDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(234, 128); this.Controls.Add(this.layoutControl1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "InputXYDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "坐标"; ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit(); this.layoutControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.txtX.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtY.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.itemX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.itemY)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider1)).EndInit(); this.ResumeLayout(false); } #endregion private DevExpress.XtraLayout.LayoutControl layoutControl1; private DevExpress.XtraLayout.LayoutControlGroup Root; private DevExpress.XtraLayout.LayoutControlItem itemX; private DevExpress.XtraLayout.LayoutControlItem itemY; private DevExpress.XtraEditors.SimpleButton btnOK; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem3; private DevExpress.XtraEditors.TextEdit txtX; private DevExpress.XtraEditors.TextEdit txtY; private DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider dxErrorProvider1; } }