using System.ComponentModel; using System.Windows.Forms; using DevComponents.DotNetBar; using DevComponents.DotNetBar.Controls; namespace Cyberpipe { partial class FrmBufferAnalysis { /// <summary> /// Required designer variable. /// </summary> private 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.components = new System.ComponentModel.Container(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.labelX1 = new DevComponents.DotNetBar.LabelX(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.buttonXSelectAll = new DevComponents.DotNetBar.ButtonX(); this.clbLayers = new System.Windows.Forms.CheckedListBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX(); this.图层名称 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.编号 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.btnEnter = new DevComponents.DotNetBar.ButtonX(); this.btnCancel = new DevComponents.DotNetBar.ButtonX(); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.FlyToMenu = new System.Windows.Forms.ToolStripMenuItem(); this.LightMenu = new System.Windows.Forms.ToolStripMenuItem(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.labelX2 = new DevComponents.DotNetBar.LabelX(); this.txtRadius = new System.Windows.Forms.TextBox(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit(); this.contextMenuStrip1.SuspendLayout(); this.SuspendLayout(); // // labelX1 // // // // this.labelX1.BackgroundStyle.Class = ""; this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; this.labelX1.Location = new System.Drawing.Point(12, 12); this.labelX1.Name = "labelX1"; this.labelX1.Size = new System.Drawing.Size(93, 23); this.labelX1.TabIndex = 0; this.labelX1.Text = "缓冲区半径:"; // // groupBox1 // this.groupBox1.Controls.Add(this.buttonXSelectAll); this.groupBox1.Controls.Add(this.clbLayers); this.groupBox1.Location = new System.Drawing.Point(12, 42); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(347, 186); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "图层信息"; // // buttonXSelectAll // this.buttonXSelectAll.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.buttonXSelectAll.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.buttonXSelectAll.Location = new System.Drawing.Point(285, 157); this.buttonXSelectAll.Name = "buttonXSelectAll"; this.buttonXSelectAll.Size = new System.Drawing.Size(56, 23); this.buttonXSelectAll.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.buttonXSelectAll.TabIndex = 6; this.buttonXSelectAll.Text = "全选"; this.buttonXSelectAll.Click += new System.EventHandler(this.buttonXSelectAll_Click); // // clbLayers // this.clbLayers.CheckOnClick = true; this.clbLayers.Dock = System.Windows.Forms.DockStyle.Left; this.clbLayers.FormattingEnabled = true; this.clbLayers.Location = new System.Drawing.Point(3, 17); this.clbLayers.Name = "clbLayers"; this.clbLayers.Size = new System.Drawing.Size(276, 166); this.clbLayers.TabIndex = 0; // // groupBox2 // this.groupBox2.Controls.Add(this.dataGridViewX1); this.groupBox2.Location = new System.Drawing.Point(12, 238); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(350, 166); this.groupBox2.TabIndex = 3; this.groupBox2.TabStop = false; this.groupBox2.Text = "分析信息"; // // dataGridViewX1 // this.dataGridViewX1.AllowUserToAddRows = false; this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.图层名称, this.编号}); dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window; dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1; this.dataGridViewX1.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170))))); this.dataGridViewX1.Location = new System.Drawing.Point(3, 17); this.dataGridViewX1.Name = "dataGridViewX1"; this.dataGridViewX1.ReadOnly = true; this.dataGridViewX1.RowTemplate.Height = 23; this.dataGridViewX1.Size = new System.Drawing.Size(344, 146); this.dataGridViewX1.TabIndex = 0; this.dataGridViewX1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dataGridViewX1_MouseClick); this.dataGridViewX1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dataGridViewX1_MouseDoubleClick); // // 图层名称 // this.图层名称.HeaderText = "图层名称"; this.图层名称.Name = "图层名称"; this.图层名称.ReadOnly = true; // // 编号 // this.编号.HeaderText = "编号"; this.编号.Name = "编号"; this.编号.ReadOnly = true; // // btnEnter // this.btnEnter.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.btnEnter.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.btnEnter.Location = new System.Drawing.Point(12, 415); this.btnEnter.Name = "btnEnter"; this.btnEnter.Size = new System.Drawing.Size(75, 23); this.btnEnter.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.btnEnter.TabIndex = 4; this.btnEnter.Text = "确定"; this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click); // // btnCancel // this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.btnCancel.Location = new System.Drawing.Point(285, 415); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.btnCancel.TabIndex = 5; this.btnCancel.Text = "取消"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // contextMenuStrip1 // this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FlyToMenu, this.LightMenu}); this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(101, 48); // // FlyToMenu // this.FlyToMenu.Name = "FlyToMenu"; this.FlyToMenu.Size = new System.Drawing.Size(100, 22); this.FlyToMenu.Text = "定位"; this.FlyToMenu.Click += new System.EventHandler(this.FlyToMenu_Click); // // LightMenu // this.LightMenu.Name = "LightMenu"; this.LightMenu.Size = new System.Drawing.Size(100, 22); this.LightMenu.Text = "闪烁"; this.LightMenu.Click += new System.EventHandler(this.LightMenu_Click); // // timer1 // this.timer1.Interval = 500; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // labelX2 // // // // this.labelX2.BackgroundStyle.Class = ""; this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; this.labelX2.Location = new System.Drawing.Point(220, 11); this.labelX2.Name = "labelX2"; this.labelX2.Size = new System.Drawing.Size(93, 23); this.labelX2.TabIndex = 0; this.labelX2.Text = "米"; // // txtRadius // this.txtRadius.Location = new System.Drawing.Point(95, 11); this.txtRadius.Name = "txtRadius"; this.txtRadius.Size = new System.Drawing.Size(110, 21); this.txtRadius.TabIndex = 6; this.txtRadius.TextChanged += new System.EventHandler(this.txtRadius_TextChanged); // // FrmBufferAnalysis // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(375, 444); this.Controls.Add(this.txtRadius); this.Controls.Add(this.btnCancel); this.Controls.Add(this.groupBox2); this.Controls.Add(this.btnEnter); this.Controls.Add(this.groupBox1); this.Controls.Add(this.labelX1); this.Controls.Add(this.labelX2); this.DoubleBuffered = true; this.EnableGlass = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.MaximizeBox = false; this.Name = "FrmBufferAnalysis"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "缓冲分析"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmBufferAnalysis_FormClosing); this.Load += new System.EventHandler(this.FrmBufferAnalysis_Load); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit(); this.contextMenuStrip1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private LabelX labelX1; private GroupBox groupBox1; private CheckedListBox clbLayers; private GroupBox groupBox2; private DataGridViewX dataGridViewX1; private ButtonX btnEnter; private ButtonX btnCancel; private ContextMenuStrip contextMenuStrip1; private ToolStripMenuItem FlyToMenu; private ToolStripMenuItem LightMenu; private Timer timer1; private LabelX labelX2; private ButtonX buttonXSelectAll; private DataGridViewTextBoxColumn 图层名称; private DataGridViewTextBoxColumn 编号; private TextBox txtRadius; } }