using DevExpress.XtraEditors; using DevExpress.XtraEditors.Controls; using DevExpress.XtraTreeList; using DevExpress.XtraTreeList.Columns; using DevExpress.Utils; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace KGIS.Plugin.LayerProperty.View.UC_Controls { partial class UCFeatureRenderProperty { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); DevExpress.XtraTreeList.Nodes.TreeListNode treeListNode1 = new DevExpress.XtraTreeList.Nodes.TreeListNode(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCFeatureRenderProperty)); this.pnRenderPage = new System.Windows.Forms.Panel(); this.picRenderType = new DevExpress.XtraEditors.PictureEdit(); this.tlstRendererType = new DevExpress.XtraTreeList.TreeList(); this.colName = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.colType = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components); this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); this.btnImportFormLayer = new DevExpress.XtraEditors.SimpleButton(); this.lblRenderDesc = new DevExpress.XtraEditors.TextEdit(); ((System.ComponentModel.ISupportInitialize)(this.picRenderType.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tlstRendererType)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lblRenderDesc.Properties)).BeginInit(); this.SuspendLayout(); // // pnRenderPage // this.pnRenderPage.AutoScroll = true; this.pnRenderPage.BackColor = System.Drawing.Color.Transparent; this.pnRenderPage.Location = new System.Drawing.Point(157, 41); this.pnRenderPage.Name = "pnRenderPage"; this.pnRenderPage.Size = new System.Drawing.Size(484, 384); this.pnRenderPage.TabIndex = 2; // // picRenderType // this.picRenderType.Location = new System.Drawing.Point(6, 310); this.picRenderType.Name = "picRenderType"; // // // this.picRenderType.Properties.Appearance.BackColor = System.Drawing.Color.Transparent; this.picRenderType.Properties.Appearance.Options.UseBackColor = true; this.picRenderType.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.picRenderType.Size = new System.Drawing.Size(145, 108); this.picRenderType.TabIndex = 3; // // tlstRendererType // this.tlstRendererType.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { this.colName, this.colType}); this.tlstRendererType.Cursor = System.Windows.Forms.Cursors.Default; this.tlstRendererType.Location = new System.Drawing.Point(3, 6); this.tlstRendererType.Name = "tlstRendererType"; treeListNode1.HasChildren = true; treeListNode1.Selected = true; this.tlstRendererType.Nodes.Add(treeListNode1); this.tlstRendererType.OptionsView.AutoWidth = false; this.tlstRendererType.OptionsView.FocusRectStyle = DevExpress.XtraTreeList.DrawFocusRectStyle.RowFocus; this.tlstRendererType.Size = new System.Drawing.Size(148, 299); this.tlstRendererType.TabIndex = 4; this.tlstRendererType.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.tlstRendererType_FocusedNodeChanged); // // colName // this.colName.Caption = "名称"; this.colName.FieldName = "F_Name"; this.colName.MinWidth = 52; this.colName.Name = "colName"; this.colName.Visible = true; this.colName.VisibleIndex = 0; this.colName.Width = 127; // // colType // this.colType.Caption = "渲染类型"; this.colType.FieldName = "F_Type"; this.colType.Name = "colType"; // // imageCollection1 // this.imageCollection1.ImageSize = new System.Drawing.Size(126, 96); this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream"))); // // panelControl1 // this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.panelControl1.Controls.Add(this.picRenderType); this.panelControl1.Controls.Add(this.tlstRendererType); this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left; this.panelControl1.Location = new System.Drawing.Point(0, 0); this.panelControl1.Name = "panelControl1"; this.panelControl1.Size = new System.Drawing.Size(157, 425); this.panelControl1.TabIndex = 5; // // btnImportFormLayer // this.btnImportFormLayer.Location = new System.Drawing.Point(551, 7); this.btnImportFormLayer.Name = "btnImportFormLayer"; this.btnImportFormLayer.Size = new System.Drawing.Size(67, 27); this.btnImportFormLayer.TabIndex = 38; this.btnImportFormLayer.Text = "导入..."; this.btnImportFormLayer.Click += new System.EventHandler(this.btnImportFormLayer_Click); // // lblRenderDesc // this.lblRenderDesc.EditValue = "根据字段值到符号库中进行符号匹配"; this.lblRenderDesc.Location = new System.Drawing.Point(159, 9); this.lblRenderDesc.Name = "lblRenderDesc"; // // // this.lblRenderDesc.Properties.ReadOnly = true; this.lblRenderDesc.Size = new System.Drawing.Size(385, 20); this.lblRenderDesc.TabIndex = 0; // // UCFeatureRenderProperty // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.lblRenderDesc); this.Controls.Add(this.btnImportFormLayer); this.Controls.Add(this.panelControl1); this.Controls.Add(this.pnRenderPage); this.Name = "UCFeatureRenderProperty"; this.Size = new System.Drawing.Size(642, 425); ((System.ComponentModel.ISupportInitialize)(this.picRenderType.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tlstRendererType)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lblRenderDesc.Properties)).EndInit(); this.ResumeLayout(false); } #endregion private Panel pnRenderPage; private PictureEdit picRenderType; private TreeList tlstRendererType; private TreeListColumn colName; private ImageCollection imageCollection1; private PanelControl panelControl1; private TreeListColumn colType; private SimpleButton btnImportFormLayer; private TextEdit lblRenderDesc; } }