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.Conditions; using WWPipeLine.MapBasic; namespace WWPipeLine.MapTools.Conditions.EditGuanWang { public class GuanDianShanChubak : ConditionPanel { private UITextBox uitb_wth; private UILabel uiLabel1; private UILabel uiLabel18; private UITextBox uitb_dmgc; private UITextBox uitb_kj; private UITextBox uitb_gg; private UILabel uiLabel17; private UITextBox uitb_fsw; private UILabel uiLabel15; private UILabel uiLabel14; private UITextBox uitb_xh; private UILabel uiLabel16; private UITextBox uitb_bz; private UILabel uiLabel13; private UIDatePicker uidp_msrq; private UILabel uiLabel11; private UITextBox uitb_yl; private UILabel uiLabel12; private UITextBox uitb_ms; 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_fldm; private UITextBox uitb_tz; private UILabel uiLabel7; private UILabel uiLabel8; private UILabel uiLabel2; private Recordset _recordset = null; public GuanDianShanChubak() : base() { this.ConditionPanelName = "删除管点信息"; this.SetSize(500, 415); this.IsShowResultWindow = false; InitializeComponent(); } protected override void OnLoad(EventArgs e) { ComsStatic.SetLayersIsSelectableFalse(ComsStatic.gsGuanXian.Name, false); MapControl.GeometrySelectChanged += MapControl_GeometrySelectChanged; } private void MapControl_GeometrySelectChanged(object sender, GeometrySelectChangedEventArgs 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) { return; } _recordset.MoveFirst(); uitb_wth.Text = _recordset.GetFieldValue("wth")?.ToString(); uitb_fldm.Text = _recordset.GetFieldValue("fldm")?.ToString(); uitb_fsw.Text = _recordset.GetFieldValue("fsw")?.ToString(); uitb_tz.Text = _recordset.GetFieldValue("tz")?.ToString(); uitb_xh.Text = _recordset.GetFieldValue("xh")?.ToString(); uitb_gg.Text = _recordset.GetFieldValue("gg")?.ToString(); uitb_cz.Text = _recordset.GetFieldValue("cz")?.ToString(); uitb_yl.Text = _recordset.GetFieldValue("gj").ToString(); uitb_yl.Text = _recordset.GetFieldValue("kj")?.ToString(); uitb_yl.Text = _recordset.GetFieldValue("yl")?.ToString(); uitb_dmgc.Text = _recordset.GetFieldValue("dmgc").ToString(); uitb_ms.Text = _recordset.GetFieldValue("ms").ToString(); uitb_msfs.Text = _recordset.GetFieldValue("msfs")?.ToString(); uidp_msrq.Text = _recordset.GetFieldValue("msrq")?.ToString(); uitb_dzms.Text = _recordset.GetFieldValue("dzms")?.ToString(); uitb_qsdw.Text = _recordset.GetFieldValue("qsdw")?.ToString(); uitb_tcdw.Text = _recordset.GetFieldValue("tcdw")?.ToString(); uitb_bz.Text = _recordset.GetFieldValue("bz")?.ToString(); } public override object Do(DockPanel dockPanel = null) { if (_recordset is null || _recordset.RecordCount != 1) { UIMessageTip.ShowError("请先选择需要删除的元素"); return false; } string rdBSM = _recordset.GetFieldValue("bsm").ToString(); string rdFLDM = _recordset.GetFieldValue("fldm").ToString(); int jslkCount = ComsStatic.gsGuanXian.Query(string.Format(" qsdh='{0}' or zddh='{0}' ", rdBSM), CursorType.Static).RecordCount; if (jslkCount > 0) { UIMessageTip.ShowError("当前管点在管线中用到,禁止删除"); return false; } if (_recordset.Delete()) { ComsStatic.ShowOKLog(rdFLDM + "删除成功", rdBSM); Recordset rdGuanDian = ComsStatic.gsGuanDian.Query(string.Format(" bsm ='0' ", rdBSM), CursorType.Dynamic); rdGuanDian.Delete(); uitb_wth.Text = ""; uitb_fldm.Text = ""; uitb_fsw.Text = ""; uitb_tz.Text = ""; uitb_xh.Text = ""; uitb_gg.Text = ""; uitb_cz.Text = ""; uitb_yl.Text = ""; uitb_yl.Text = ""; uitb_yl.Text = ""; uitb_dmgc.Text = ""; uitb_ms.Text = ""; uitb_msfs.Text = ""; uidp_msrq.Text = ""; uitb_dzms.Text = ""; uitb_qsdw.Text = ""; uitb_tcdw.Text = ""; uitb_bz.Text = ""; } else { ComsStatic.ShowErrorLog(rdFLDM + "删除失败"); } _recordset = null; MapControl.Map.RefreshEx(MapControl.Map.Bounds); return null; } public override void AfterClose() { MapControl.GeometrySelectChanged -= MapControl_GeometrySelectChanged; ComsStatic.RecordsetDispose(_recordset); base.AfterClose(); } private void InitializeComponent() { this.uitb_wth = new Sunny.UI.UITextBox(); this.uiLabel1 = new Sunny.UI.UILabel(); this.uiLabel18 = new Sunny.UI.UILabel(); this.uitb_dmgc = new Sunny.UI.UITextBox(); this.uitb_kj = new Sunny.UI.UITextBox(); this.uitb_gg = new Sunny.UI.UITextBox(); this.uiLabel17 = new Sunny.UI.UILabel(); this.uitb_fsw = new Sunny.UI.UITextBox(); this.uiLabel15 = new Sunny.UI.UILabel(); this.uiLabel14 = new Sunny.UI.UILabel(); this.uitb_xh = new Sunny.UI.UITextBox(); this.uiLabel16 = new Sunny.UI.UILabel(); 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_ms = 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_fldm = new Sunny.UI.UITextBox(); this.uitb_tz = new Sunny.UI.UITextBox(); this.uiLabel7 = new Sunny.UI.UILabel(); this.uiLabel8 = new Sunny.UI.UILabel(); this.uiLabel2 = new Sunny.UI.UILabel(); this.SuspendLayout(); // // uitb_wth // this.uitb_wth.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_wth.FillColor = System.Drawing.Color.White; this.uitb_wth.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_wth.Location = new System.Drawing.Point(347, 6); this.uitb_wth.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_wth.Maximum = 2147483647D; this.uitb_wth.Minimum = -2147483648D; this.uitb_wth.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_wth.Name = "uitb_wth"; this.uitb_wth.ReadOnly = true; this.uitb_wth.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_wth.Size = new System.Drawing.Size(120, 29); this.uitb_wth.Style = Sunny.UI.UIStyle.Gray; this.uitb_wth.TabIndex = 64; this.uitb_wth.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel1 // this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel1.Location = new System.Drawing.Point(241, 9); this.uiLabel1.Name = "uiLabel1"; this.uiLabel1.Size = new System.Drawing.Size(92, 23); this.uiLabel1.Style = Sunny.UI.UIStyle.Gray; this.uiLabel1.TabIndex = 65; this.uiLabel1.Text = "物探号:"; this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel18 // this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel18.Location = new System.Drawing.Point(9, 188); this.uiLabel18.Name = "uiLabel18"; this.uiLabel18.Size = new System.Drawing.Size(92, 23); this.uiLabel18.Style = Sunny.UI.UIStyle.Gray; this.uiLabel18.TabIndex = 63; this.uiLabel18.Text = "地面高程:"; this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_dmgc // this.uitb_dmgc.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_dmgc.FillColor = System.Drawing.Color.White; this.uitb_dmgc.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_dmgc.Location = new System.Drawing.Point(114, 189); this.uitb_dmgc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_dmgc.Maximum = 2147483647D; this.uitb_dmgc.Minimum = -2147483648D; this.uitb_dmgc.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_dmgc.Name = "uitb_dmgc"; this.uitb_dmgc.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_dmgc.Size = new System.Drawing.Size(120, 29); this.uitb_dmgc.Style = Sunny.UI.UIStyle.Gray; this.uitb_dmgc.TabIndex = 48; this.uitb_dmgc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_kj // this.uitb_kj.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_kj.FillColor = System.Drawing.Color.White; this.uitb_kj.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_kj.Location = new System.Drawing.Point(114, 154); this.uitb_kj.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_kj.Maximum = 2147483647D; this.uitb_kj.MaxLength = 10; this.uitb_kj.Minimum = -2147483648D; this.uitb_kj.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_kj.Name = "uitb_kj"; this.uitb_kj.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_kj.Size = new System.Drawing.Size(120, 29); this.uitb_kj.Style = Sunny.UI.UIStyle.Gray; this.uitb_kj.TabIndex = 44; this.uitb_kj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_gg // this.uitb_gg.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_gg.FillColor = System.Drawing.Color.White; this.uitb_gg.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_gg.Location = new System.Drawing.Point(347, 77); this.uitb_gg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_gg.Maximum = 2147483647D; this.uitb_gg.MaxLength = 10; this.uitb_gg.Minimum = -2147483648D; this.uitb_gg.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_gg.Name = "uitb_gg"; this.uitb_gg.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_gg.Size = new System.Drawing.Size(120, 29); this.uitb_gg.Style = Sunny.UI.UIStyle.Gray; this.uitb_gg.TabIndex = 36; this.uitb_gg.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel17 // this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel17.Location = new System.Drawing.Point(9, 152); this.uiLabel17.Name = "uiLabel17"; this.uiLabel17.Size = new System.Drawing.Size(92, 23); this.uiLabel17.Style = Sunny.UI.UIStyle.Gray; this.uiLabel17.TabIndex = 37; this.uiLabel17.Text = "口径:"; this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_fsw // this.uitb_fsw.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_fsw.FillColor = System.Drawing.Color.White; this.uitb_fsw.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_fsw.Location = new System.Drawing.Point(114, 40); this.uitb_fsw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_fsw.Maximum = 2147483647D; this.uitb_fsw.MaxLength = 10; this.uitb_fsw.Minimum = -2147483648D; this.uitb_fsw.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_fsw.Name = "uitb_fsw"; this.uitb_fsw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_fsw.Size = new System.Drawing.Size(120, 29); this.uitb_fsw.Style = Sunny.UI.UIStyle.Gray; this.uitb_fsw.TabIndex = 32; this.uitb_fsw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel15 // this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel15.Location = new System.Drawing.Point(241, 80); this.uiLabel15.Name = "uiLabel15"; this.uiLabel15.Size = new System.Drawing.Size(92, 23); this.uiLabel15.Style = Sunny.UI.UIStyle.Gray; this.uiLabel15.TabIndex = 47; this.uiLabel15.Text = "规格:"; this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel14 // this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel14.Location = new System.Drawing.Point(9, 44); this.uiLabel14.Name = "uiLabel14"; this.uiLabel14.Size = new System.Drawing.Size(92, 23); this.uiLabel14.Style = Sunny.UI.UIStyle.Gray; this.uiLabel14.TabIndex = 38; this.uiLabel14.Text = "附属物:"; this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_xh // this.uitb_xh.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_xh.FillColor = System.Drawing.Color.White; this.uitb_xh.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_xh.Location = new System.Drawing.Point(114, 77); this.uitb_xh.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_xh.Maximum = 2147483647D; this.uitb_xh.MaxLength = 10; this.uitb_xh.Minimum = -2147483648D; this.uitb_xh.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_xh.Name = "uitb_xh"; this.uitb_xh.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_xh.Size = new System.Drawing.Size(120, 29); this.uitb_xh.Style = Sunny.UI.UIStyle.Gray; this.uitb_xh.TabIndex = 35; this.uitb_xh.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel16 // this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel16.Location = new System.Drawing.Point(9, 80); this.uiLabel16.Name = "uiLabel16"; this.uiLabel16.Size = new System.Drawing.Size(92, 23); this.uiLabel16.Style = Sunny.UI.UIStyle.Gray; this.uiLabel16.TabIndex = 41; this.uiLabel16.Text = "型号:"; this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // 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(114, 368); 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(353, 29); this.uitb_bz.Style = Sunny.UI.UIStyle.Gray; this.uitb_bz.TabIndex = 59; this.uitb_bz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel13 // this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel13.Location = new System.Drawing.Point(9, 368); this.uiLabel13.Name = "uiLabel13"; this.uiLabel13.Size = new System.Drawing.Size(92, 23); this.uiLabel13.Style = Sunny.UI.UIStyle.Gray; this.uiLabel13.TabIndex = 62; 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(347, 225); 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(120, 29); this.uidp_msrq.Style = Sunny.UI.UIStyle.Gray; this.uidp_msrq.SymbolDropDown = 61555; this.uidp_msrq.SymbolNormal = 61555; this.uidp_msrq.TabIndex = 53; 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(241, 192); this.uiLabel11.Name = "uiLabel11"; this.uiLabel11.Size = new System.Drawing.Size(92, 23); this.uiLabel11.Style = Sunny.UI.UIStyle.Gray; this.uiLabel11.TabIndex = 61; 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(347, 154); 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(120, 29); this.uitb_yl.Style = Sunny.UI.UIStyle.Gray; this.uitb_yl.TabIndex = 45; this.uitb_yl.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel12 // this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel12.Location = new System.Drawing.Point(241, 157); this.uiLabel12.Name = "uiLabel12"; this.uiLabel12.Size = new System.Drawing.Size(92, 23); this.uiLabel12.Style = Sunny.UI.UIStyle.Gray; this.uiLabel12.TabIndex = 60; this.uiLabel12.Text = "压力:"; this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uitb_ms // this.uitb_ms.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_ms.FillColor = System.Drawing.Color.White; this.uitb_ms.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_ms.Location = new System.Drawing.Point(347, 189); this.uitb_ms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_ms.Maximum = 2147483647D; this.uitb_ms.Minimum = -2147483648D; this.uitb_ms.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_ms.Name = "uitb_ms"; this.uitb_ms.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_ms.Size = new System.Drawing.Size(120, 29); this.uitb_ms.Style = Sunny.UI.UIStyle.Gray; this.uitb_ms.TabIndex = 50; this.uitb_ms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel9 // this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel9.Location = new System.Drawing.Point(9, 332); this.uiLabel9.Name = "uiLabel9"; this.uiLabel9.Size = new System.Drawing.Size(92, 23); this.uiLabel9.Style = Sunny.UI.UIStyle.Gray; this.uiLabel9.TabIndex = 58; 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(114, 296); 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(353, 29); this.uitb_qsdw.Style = Sunny.UI.UIStyle.Gray; this.uitb_qsdw.TabIndex = 55; this.uitb_qsdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel10 // this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel10.Location = new System.Drawing.Point(9, 296); this.uiLabel10.Name = "uiLabel10"; this.uiLabel10.Size = new System.Drawing.Size(92, 23); this.uiLabel10.Style = Sunny.UI.UIStyle.Gray; this.uiLabel10.TabIndex = 56; 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(114, 332); 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(353, 29); this.uitb_tcdw.Style = Sunny.UI.UIStyle.Gray; this.uitb_tcdw.TabIndex = 57; 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(347, 114); 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(120, 29); this.uitb_gj.Style = Sunny.UI.UIStyle.Gray; this.uitb_gj.TabIndex = 42; this.uitb_gj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel5 // this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel5.Location = new System.Drawing.Point(241, 228); this.uiLabel5.Name = "uiLabel5"; this.uiLabel5.Size = new System.Drawing.Size(92, 23); this.uiLabel5.Style = Sunny.UI.UIStyle.Gray; this.uiLabel5.TabIndex = 52; 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(241, 117); this.uiLabel4.Name = "uiLabel4"; this.uiLabel4.Size = new System.Drawing.Size(92, 23); this.uiLabel4.Style = Sunny.UI.UIStyle.Gray; this.uiLabel4.TabIndex = 39; 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(114, 225); 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(120, 29); this.uitb_msfs.Style = Sunny.UI.UIStyle.Gray; this.uitb_msfs.TabIndex = 51; 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(114, 114); 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(120, 29); this.uitb_cz.Style = Sunny.UI.UIStyle.Gray; this.uitb_cz.TabIndex = 40; this.uitb_cz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel6 // this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel6.Location = new System.Drawing.Point(9, 224); this.uiLabel6.Name = "uiLabel6"; this.uiLabel6.Size = new System.Drawing.Size(92, 23); this.uiLabel6.Style = Sunny.UI.UIStyle.Gray; this.uiLabel6.TabIndex = 49; 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(9, 116); this.uiLabel3.Name = "uiLabel3"; this.uiLabel3.Size = new System.Drawing.Size(92, 23); this.uiLabel3.Style = Sunny.UI.UIStyle.Gray; this.uiLabel3.TabIndex = 33; 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(114, 260); 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(353, 29); this.uitb_dzms.Style = Sunny.UI.UIStyle.Gray; this.uitb_dzms.TabIndex = 54; this.uitb_dzms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uitb_fldm // this.uitb_fldm.Cursor = System.Windows.Forms.Cursors.IBeam; this.uitb_fldm.FillColor = System.Drawing.Color.White; this.uitb_fldm.Font = new System.Drawing.Font("微软雅黑", 12F); this.uitb_fldm.Location = new System.Drawing.Point(115, 6); this.uitb_fldm.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.uitb_fldm.Maximum = 2147483647D; this.uitb_fldm.Minimum = -2147483648D; this.uitb_fldm.MinimumSize = new System.Drawing.Size(1, 1); this.uitb_fldm.Name = "uitb_fldm"; this.uitb_fldm.ReadOnly = true; this.uitb_fldm.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.uitb_fldm.Size = new System.Drawing.Size(120, 29); this.uitb_fldm.Style = Sunny.UI.UIStyle.Gray; this.uitb_fldm.TabIndex = 31; this.uitb_fldm.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(347, 40); 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(120, 29); this.uitb_tz.Style = Sunny.UI.UIStyle.Gray; this.uitb_tz.TabIndex = 34; this.uitb_tz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; // // uiLabel7 // this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel7.Location = new System.Drawing.Point(9, 260); this.uiLabel7.Name = "uiLabel7"; this.uiLabel7.Size = new System.Drawing.Size(92, 23); this.uiLabel7.Style = Sunny.UI.UIStyle.Gray; this.uiLabel7.TabIndex = 46; 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(241, 43); this.uiLabel8.Name = "uiLabel8"; this.uiLabel8.Size = new System.Drawing.Size(92, 23); this.uiLabel8.Style = Sunny.UI.UIStyle.Gray; this.uiLabel8.TabIndex = 43; this.uiLabel8.Text = "特征:"; this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // uiLabel2 // this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F); this.uiLabel2.Location = new System.Drawing.Point(9, 8); this.uiLabel2.Name = "uiLabel2"; this.uiLabel2.Size = new System.Drawing.Size(92, 23); this.uiLabel2.Style = Sunny.UI.UIStyle.Gray; this.uiLabel2.TabIndex = 30; this.uiLabel2.Text = "分类代码:"; this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // GuanDianShanChu // this.Controls.Add(this.uitb_wth); this.Controls.Add(this.uiLabel1); this.Controls.Add(this.uiLabel18); this.Controls.Add(this.uitb_dmgc); this.Controls.Add(this.uitb_kj); this.Controls.Add(this.uitb_gg); this.Controls.Add(this.uiLabel17); this.Controls.Add(this.uitb_fsw); this.Controls.Add(this.uiLabel15); this.Controls.Add(this.uiLabel14); this.Controls.Add(this.uitb_xh); this.Controls.Add(this.uiLabel16); 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_ms); 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_fldm); this.Controls.Add(this.uitb_tz); this.Controls.Add(this.uiLabel7); this.Controls.Add(this.uiLabel8); this.Controls.Add(this.uiLabel2); this.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244))))); this.Name = "GuanDianShanChu"; this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140))))); this.Size = new System.Drawing.Size(500, 415); this.Style = Sunny.UI.UIStyle.Gray; this.ResumeLayout(false); } } }