using Sunny.UI; using SuperMap.Data; using SuperMap.Mapping; using SuperMap.UI; using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; using WeifenLuo.WinFormsUI.Docking; using WWPipeLine.MapBasic; using WWPipeLine.MapBasic.Conditions; namespace WWPipeLine.MapTools.Conditions.EditGuanWang { public class GuanXianShanChubak : ConditionPanel { private UILabel uiLabel2; private UILabel uiLabel1; private UILabel uiLabel14; private UITextBox uitbGdbh; private UITextBox uitb_bz; private UILabel uiLabel13; private UIDatePicker uidp_msrq; private UILabel uiLabel11; private UITextBox uitb_yl; private UILabel uiLabel12; private UITextBox uitb_cd; private UILabel uiLabel9; private UITextBox uitb_qsdw; private UILabel uiLabel10; private UITextBox uitb_tcdw; private UITextBox uitb_gj; private UILabel uiLabel5; private UILabel uiLabel4; private UITextBox uitb_msfs; private UITextBox uitb_cz; private UILabel uiLabel6; private UILabel uiLabel3; private UITextBox uitb_dzms; private UITextBox uitb_tz; private UILabel uiLabel7; private UILabel uiLabel8; private Recordset _recordset = null; public GuanXianShanChubak() : base() { this.ConditionPanelName = "删除管线信息"; InitializeComponent(); this.IsShowResultWindow = false; } protected override void OnLoad(EventArgs e) { ComsStatic.SetLayersIsSelectableFalse(ComsStatic.gsGuanXian.Name, true); MapControl.GeometrySelected += MapControl_GeometrySelected; } private void MapControl_GeometrySelected(object sender, GeometrySelectedEventArgs e) { Selection[] _selection = MapControl.Map.FindSelection(true); if (_selection.Length != 1 || _selection[0].Count != 1) { Sunny.UI.UIMessageTip.ShowError("仅可以选择一个需要删除的管线信息"); return; } _recordset = _selection[0].ToRecordset(); if (_recordset.Dataset.Name != ComsStatic.gsGuanXian.Name || _recordset.RecordCount != 1) { Sunny.UI.UIMessageTip.ShowError("仅可以选择供水管线图层!"); return; } _recordset.MoveFirst(); uitb_cz.Text = _recordset.GetFieldValue("cz")?.ToString(); uitb_gj.Text = _recordset.GetFieldValue("gj").ToString(); uitb_dzms.Text = _recordset.GetFieldValue("dzms")?.ToString(); uitb_tz.Text = _recordset.GetFieldValue("tz")?.ToString(); uitb_msfs.Text = _recordset.GetFieldValue("msfs")?.ToString(); uidp_msrq.Text = _recordset.GetFieldValue("msrq")?.ToString(); uitb_yl.Text = _recordset.GetFieldValue("yl")?.ToString(); uitbGdbh.Text = _recordset.GetFieldValue("gdbh")?.ToString(); uitb_cd.Text = _recordset.GetFieldValue("cd").ToString(); uitb_bz.Text = _recordset.GetFieldValue("bz")?.ToString(); uitb_qsdw.Text = _recordset.GetFieldValue("qsdw")?.ToString(); uitb_tcdw.Text = _recordset.GetFieldValue("tcdw")?.ToString(); } public override object Do(DockPanel dockPanel = null) { if (_recordset is null || _recordset.RecordCount != 1) { UIMessageTip.ShowError("请先选择需要删除的元素"); return false; } ComsStatic.ShowUIMessageTipOKorError(_recordset.Delete(), "管线删除", _recordset.GetFieldValue("objectid")?.ToString()); _recordset = null; return null; } public override void AfterClose() { MapControl.GeometrySelected -= MapControl_GeometrySelected; ComsStatic.RecordsetDispose(_recordset); base.AfterClose(); } private void InitializeComponent() { this.uiLabel2 = new Sunny.UI.UILabel(); this.uiLabel1 = new Sunny.UI.UILabel(); this.uiLabel14 = new Sunny.UI.UILabel(); this.uitbGdbh = new Sunny.UI.UITextBox(); this.uitb_bz = new Sunny.UI.UITextBox(); this.uiLabel13 = new Sunny.UI.UILabel(); this.uidp_msrq = new Sunny.UI.UIDatePicker(); this.uiLabel11 = new Sunny.UI.UILabel(); this.uitb_yl = new Sunny.UI.UITextBox(); this.uiLabel12 = new Sunny.UI.UILabel(); this.uitb_cd = new Sunny.UI.UITextBox(); this.uiLabel9 = new Sunny.UI.UILabel(); this.uitb_qsdw = new Sunny.UI.UITextBox(); this.uiLabel10 = new Sunny.UI.UILabel(); this.uitb_tcdw = new Sunny.UI.UITextBox(); this.uitb_gj = new Sunny.UI.UITextBox(); this.uiLabel5 = new Sunny.UI.UILabel(); this.uiLabel4 = new Sunny.UI.UILabel(); this.uitb_msfs = new Sunny.UI.UITextBox(); this.uitb_cz = new Sunny.UI.UITextBox(); this.uiLabel6 = new Sunny.UI.UILabel(); this.uiLabel3 = new Sunny.UI.UILabel(); this.uitb_dzms = new Sunny.UI.UITextBox(); this.uitb_tz = new Sunny.UI.UITextBox(); this.uiLabel7 = new Sunny.UI.UILabel(); this.uiLabel8 = new Sunny.UI.UILabel(); this.SuspendLayout(); // // uiLabel2 // this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel2.Location = new System.Drawing.Point(419, 89); this.uiLabel2.Name = "uiLabel2"; this.uiLabel2.Size = new System.Drawing.Size(53, 23); this.uiLabel2.Style = Sunny.UI.UIStyle.Gray; this.uiLabel2.TabIndex = 53; this.uiLabel2.Text = "M"; this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel1 // this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel1.Location = new System.Drawing.Point(419, 49); this.uiLabel1.Name = "uiLabel1"; this.uiLabel1.Size = new System.Drawing.Size(53, 23); this.uiLabel1.Style = Sunny.UI.UIStyle.Gray; this.uiLabel1.TabIndex = 52; this.uiLabel1.Text = "mm"; this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel14 // this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel14.Location = new System.Drawing.Point(3, 7); this.uiLabel14.Name = "uiLabel14"; this.uiLabel14.Size = new System.Drawing.Size(92, 23); this.uiLabel14.Style = Sunny.UI.UIStyle.Gray; this.uiLabel14.TabIndex = 51; this.uiLabel14.Text = "管段编号:"; this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitbGdbh // this.uitbGdbh.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitbGdbh.FillColor = System.Drawing.Color.White; this.uitbGdbh.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitbGdbh.Location = new System.Drawing.Point(99, 7); this.uitbGdbh.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitbGdbh.Maximum = 2147483647D; this.uitbGdbh.Minimum = -2147483648D; this.uitbGdbh.MinimumSize = new System.Drawing.Size(1, 1); this.uitbGdbh.Name = "uitbGdbh"; this.uitbGdbh.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitbGdbh.Size = new System.Drawing.Size(130, 29); this.uitbGdbh.Style = Sunny.UI.UIStyle.Gray; this.uitbGdbh.TabIndex = 34; this.uitbGdbh.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_bz // this.uitb_bz.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_bz.FillColor = System.Drawing.Color.White; this.uitb_bz.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_bz.Location = new System.Drawing.Point(99, 280); this.uitb_bz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_bz.Maximum = 2147483647D; this.uitb_bz.MaxLength = 50; this.uitb_bz.Minimum = -2147483648D; this.uitb_bz.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_bz.Name = "uitb_bz"; this.uitb_bz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_bz.Size = new System.Drawing.Size(364, 29); this.uitb_bz.Style = Sunny.UI.UIStyle.Gray; this.uitb_bz.TabIndex = 43; this.uitb_bz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel13 // this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel13.Location = new System.Drawing.Point(3, 280); this.uiLabel13.Name = "uiLabel13"; this.uiLabel13.Size = new System.Drawing.Size(92, 23); this.uiLabel13.Style = Sunny.UI.UIStyle.Gray; this.uiLabel13.TabIndex = 50; this.uiLabel13.Text = "备注:"; this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uidp_msrq // this.uidp_msrq.FillColor = System.Drawing.Color.White; this.uidp_msrq.Font = new System.Drawing.Font("微软雅黑", 12F); this.uidp_msrq.Location = new System.Drawing.Point(333, 126); this.uidp_msrq.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uidp_msrq.MaxLength = 10; this.uidp_msrq.MinimumSize = new System.Drawing.Size(63, 0); this.uidp_msrq.Name = "uidp_msrq"; this.uidp_msrq.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2); this.uidp_msrq.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uidp_msrq.Size = new System.Drawing.Size(130, 29); this.uidp_msrq.Style = Sunny.UI.UIStyle.Gray; this.uidp_msrq.SymbolDropDown = 61555; this.uidp_msrq.SymbolNormal = 61555; this.uidp_msrq.TabIndex = 49; this.uidp_msrq.Text = "2020-01-01"; this.uidp_msrq.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; this.uidp_msrq.Value = new System.DateTime(2020, 1, 1, 0, 0, 0, 0); // // uiLabel11 // this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel11.Location = new System.Drawing.Point(236, 89); this.uiLabel11.Name = "uiLabel11"; this.uiLabel11.Size = new System.Drawing.Size(92, 23); this.uiLabel11.Style = Sunny.UI.UIStyle.Gray; this.uiLabel11.TabIndex = 48; this.uiLabel11.Text = "长度:"; this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_yl // this.uitb_yl.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_yl.FillColor = System.Drawing.Color.White; this.uitb_yl.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_yl.Location = new System.Drawing.Point(99, 85); this.uitb_yl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_yl.Maximum = 2147483647D; this.uitb_yl.MaxLength = 10; this.uitb_yl.Minimum = -2147483648D; this.uitb_yl.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_yl.Name = "uitb_yl"; this.uitb_yl.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_yl.Size = new System.Drawing.Size(130, 29); this.uitb_yl.Style = Sunny.UI.UIStyle.Gray; this.uitb_yl.TabIndex = 35; this.uitb_yl.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel12 // this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel12.Location = new System.Drawing.Point(3, 85); this.uiLabel12.Name = "uiLabel12"; this.uiLabel12.Size = new System.Drawing.Size(92, 23); this.uiLabel12.Style = Sunny.UI.UIStyle.Gray; this.uiLabel12.TabIndex = 47; this.uiLabel12.Text = "压力:"; this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_cd // this.uitb_cd.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_cd.FillColor = System.Drawing.Color.White; this.uitb_cd.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_cd.Location = new System.Drawing.Point(333, 83); this.uitb_cd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_cd.Maximum = 2147483647D; this.uitb_cd.Minimum = -2147483648D; this.uitb_cd.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_cd.Name = "uitb_cd"; this.uitb_cd.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_cd.Size = new System.Drawing.Size(79, 29); this.uitb_cd.Style = Sunny.UI.UIStyle.Gray; this.uitb_cd.TabIndex = 33; this.uitb_cd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel9 // this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel9.Location = new System.Drawing.Point(3, 241); this.uiLabel9.Name = "uiLabel9"; this.uiLabel9.Size = new System.Drawing.Size(92, 23); this.uiLabel9.Style = Sunny.UI.UIStyle.Gray; this.uiLabel9.TabIndex = 46; this.uiLabel9.Text = "探测单位:"; this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_qsdw // this.uitb_qsdw.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_qsdw.FillColor = System.Drawing.Color.White; this.uitb_qsdw.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_qsdw.Location = new System.Drawing.Point(99, 202); this.uitb_qsdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_qsdw.Maximum = 2147483647D; this.uitb_qsdw.MaxLength = 20; this.uitb_qsdw.Minimum = -2147483648D; this.uitb_qsdw.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_qsdw.Name = "uitb_qsdw"; this.uitb_qsdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_qsdw.Size = new System.Drawing.Size(364, 29); this.uitb_qsdw.Style = Sunny.UI.UIStyle.Gray; this.uitb_qsdw.TabIndex = 40; this.uitb_qsdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel10 // this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel10.Location = new System.Drawing.Point(3, 202); this.uiLabel10.Name = "uiLabel10"; this.uiLabel10.Size = new System.Drawing.Size(92, 23); this.uiLabel10.Style = Sunny.UI.UIStyle.Gray; this.uiLabel10.TabIndex = 45; this.uiLabel10.Text = "权属单位:"; this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_tcdw // this.uitb_tcdw.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_tcdw.FillColor = System.Drawing.Color.White; this.uitb_tcdw.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_tcdw.Location = new System.Drawing.Point(99, 241); this.uitb_tcdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_tcdw.Maximum = 2147483647D; this.uitb_tcdw.MaxLength = 20; this.uitb_tcdw.Minimum = -2147483648D; this.uitb_tcdw.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_tcdw.Name = "uitb_tcdw"; this.uitb_tcdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_tcdw.Size = new System.Drawing.Size(364, 29); this.uitb_tcdw.Style = Sunny.UI.UIStyle.Gray; this.uitb_tcdw.TabIndex = 41; this.uitb_tcdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_gj // this.uitb_gj.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_gj.FillColor = System.Drawing.Color.White; this.uitb_gj.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_gj.Location = new System.Drawing.Point(333, 43); this.uitb_gj.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_gj.Maximum = 2147483647D; this.uitb_gj.MaxLength = 10; this.uitb_gj.Minimum = -2147483648D; this.uitb_gj.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_gj.Name = "uitb_gj"; this.uitb_gj.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_gj.Size = new System.Drawing.Size(79, 29); this.uitb_gj.Style = Sunny.UI.UIStyle.Gray; this.uitb_gj.TabIndex = 30; this.uitb_gj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel5 // this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel5.Location = new System.Drawing.Point(236, 127); this.uiLabel5.Name = "uiLabel5"; this.uiLabel5.Size = new System.Drawing.Size(92, 23); this.uiLabel5.Style = Sunny.UI.UIStyle.Gray; this.uiLabel5.TabIndex = 44; this.uiLabel5.Text = "埋设日期:"; this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel4 // this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel4.Location = new System.Drawing.Point(236, 49); this.uiLabel4.Name = "uiLabel4"; this.uiLabel4.Size = new System.Drawing.Size(92, 23); this.uiLabel4.Style = Sunny.UI.UIStyle.Gray; this.uiLabel4.TabIndex = 32; this.uiLabel4.Text = "管径:"; this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_msfs // this.uitb_msfs.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_msfs.FillColor = System.Drawing.Color.White; this.uitb_msfs.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_msfs.Location = new System.Drawing.Point(99, 124); this.uitb_msfs.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_msfs.Maximum = 2147483647D; this.uitb_msfs.MaxLength = 10; this.uitb_msfs.Minimum = -2147483648D; this.uitb_msfs.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_msfs.Name = "uitb_msfs"; this.uitb_msfs.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_msfs.Size = new System.Drawing.Size(130, 29); this.uitb_msfs.Style = Sunny.UI.UIStyle.Gray; this.uitb_msfs.TabIndex = 37; this.uitb_msfs.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_cz // this.uitb_cz.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_cz.FillColor = System.Drawing.Color.White; this.uitb_cz.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_cz.Location = new System.Drawing.Point(99, 46); this.uitb_cz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_cz.Maximum = 2147483647D; this.uitb_cz.MaxLength = 10; this.uitb_cz.Minimum = -2147483648D; this.uitb_cz.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_cz.Name = "uitb_cz"; this.uitb_cz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_cz.Size = new System.Drawing.Size(130, 29); this.uitb_cz.Style = Sunny.UI.UIStyle.Gray; this.uitb_cz.TabIndex = 28; this.uitb_cz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel6 // this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel6.Location = new System.Drawing.Point(3, 124); this.uiLabel6.Name = "uiLabel6"; this.uiLabel6.Size = new System.Drawing.Size(92, 23); this.uiLabel6.Style = Sunny.UI.UIStyle.Gray; this.uiLabel6.TabIndex = 42; this.uiLabel6.Text = "埋设方式:"; this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel3 // this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel3.Location = new System.Drawing.Point(3, 46); this.uiLabel3.Name = "uiLabel3"; this.uiLabel3.Size = new System.Drawing.Size(92, 23); this.uiLabel3.Style = Sunny.UI.UIStyle.Gray; this.uiLabel3.TabIndex = 29; this.uiLabel3.Text = "管线材质:"; this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_dzms // this.uitb_dzms.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_dzms.FillColor = System.Drawing.Color.White; this.uitb_dzms.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_dzms.Location = new System.Drawing.Point(99, 163); this.uitb_dzms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_dzms.Maximum = 2147483647D; this.uitb_dzms.MaxLength = 20; this.uitb_dzms.Minimum = -2147483648D; this.uitb_dzms.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_dzms.Name = "uitb_dzms"; this.uitb_dzms.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_dzms.Size = new System.Drawing.Size(364, 29); this.uitb_dzms.Style = Sunny.UI.UIStyle.Gray; this.uitb_dzms.TabIndex = 38; this.uitb_dzms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_tz // this.uitb_tz.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_tz.FillColor = System.Drawing.Color.White; this.uitb_tz.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_tz.Location = new System.Drawing.Point(333, 5); this.uitb_tz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_tz.Maximum = 2147483647D; this.uitb_tz.MaxLength = 10; this.uitb_tz.Minimum = -2147483648D; this.uitb_tz.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_tz.Name = "uitb_tz"; this.uitb_tz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_tz.Size = new System.Drawing.Size(130, 29); this.uitb_tz.Style = Sunny.UI.UIStyle.Gray; this.uitb_tz.TabIndex = 31; this.uitb_tz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel7 // this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel7.Location = new System.Drawing.Point(3, 163); this.uiLabel7.Name = "uiLabel7"; this.uiLabel7.Size = new System.Drawing.Size(92, 23); this.uiLabel7.Style = Sunny.UI.UIStyle.Gray; this.uiLabel7.TabIndex = 39; this.uiLabel7.Text = "地址描述:"; this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel8 // this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel8.Location = new System.Drawing.Point(236, 7); this.uiLabel8.Name = "uiLabel8"; this.uiLabel8.Size = new System.Drawing.Size(92, 23); this.uiLabel8.Style = Sunny.UI.UIStyle.Gray; this.uiLabel8.TabIndex = 36; this.uiLabel8.Text = "特征:"; this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // GuanXianShanChu // this.Controls.Add(this.uiLabel2); this.Controls.Add(this.uiLabel1); this.Controls.Add(this.uiLabel14); this.Controls.Add(this.uitbGdbh); this.Controls.Add(this.uitb_bz); this.Controls.Add(this.uiLabel13); this.Controls.Add(this.uidp_msrq); this.Controls.Add(this.uiLabel11); this.Controls.Add(this.uitb_yl); this.Controls.Add(this.uiLabel12); this.Controls.Add(this.uitb_cd); this.Controls.Add(this.uiLabel9); this.Controls.Add(this.uitb_qsdw); this.Controls.Add(this.uiLabel10); this.Controls.Add(this.uitb_tcdw); this.Controls.Add(this.uitb_gj); this.Controls.Add(this.uiLabel5); this.Controls.Add(this.uiLabel4); this.Controls.Add(this.uitb_msfs); this.Controls.Add(this.uitb_cz); this.Controls.Add(this.uiLabel6); this.Controls.Add(this.uiLabel3); this.Controls.Add(this.uitb_dzms); this.Controls.Add(this.uitb_tz); this.Controls.Add(this.uiLabel7); this.Controls.Add(this.uiLabel8); this.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244))))); this.Name = "GuanXianShanChu"; this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.Size = new System.Drawing.Size(500, 315); this.Style = Sunny.UI.UIStyle.Gray; this.ResumeLayout(false); } } }