GuanXianFeiQibak.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. using Sunny.UI;
  2. using SuperMap.Data;
  3. using SuperMap.Mapping;
  4. using SuperMap.UI;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Drawing;
  8. using System.Windows.Forms;
  9. using WeifenLuo.WinFormsUI.Docking;
  10. using WWPipeLine.MapBasic.Conditions;
  11. using WWPipeLine.MapBasic;
  12. namespace WWPipeLine.MapTools.Conditions.EditGuanWang
  13. {
  14. public class GuanXianFeiQibak : ConditionPanel
  15. {
  16. private UILabel uiLabel2;
  17. private UILabel uiLabel1;
  18. private UILabel uiLabel14;
  19. private UITextBox uitbGdbh;
  20. private UITextBox uitb_bz;
  21. private UILabel uiLabel13;
  22. private UIDatePicker uidp_msrq;
  23. private UILabel uiLabel11;
  24. private UITextBox uitb_yl;
  25. private UILabel uiLabel12;
  26. private UITextBox uitb_cd;
  27. private UILabel uiLabel9;
  28. private UITextBox uitb_qsdw;
  29. private UILabel uiLabel10;
  30. private UITextBox uitb_tcdw;
  31. private UITextBox uitb_gj;
  32. private UILabel uiLabel5;
  33. private UILabel uiLabel4;
  34. private UITextBox uitb_msfs;
  35. private UITextBox uitb_cz;
  36. private UILabel uiLabel6;
  37. private UILabel uiLabel3;
  38. private UITextBox uitb_dzms;
  39. private UITextBox uitb_tz;
  40. private UILabel uiLabel7;
  41. private UILabel uiLabel8;
  42. private Recordset _recordset = null;
  43. public GuanXianFeiQibak() : base()
  44. {
  45. this.ConditionPanelName = "废弃管线";
  46. InitializeComponent();
  47. this.IsShowResultWindow = false;
  48. }
  49. protected override void OnLoad(EventArgs e)
  50. {
  51. ComsStatic.SetLayersIsSelectableFalse(ComsStatic.gsGuanXian.Name, true);
  52. MapControl.GeometrySelectChanged += MapControl_GeometrySelectChanged;
  53. }
  54. private void MapControl_GeometrySelectChanged(object sender, GeometrySelectChangedEventArgs e)
  55. {
  56. Selection[] _selection = MapControl.Map.FindSelection(true);
  57. if (_selection.Length != 1 || _selection[0].Count != 1)
  58. {
  59. Sunny.UI.UIMessageTip.ShowError("仅可以选择一个需要恢复的信息!"); return;
  60. }
  61. _recordset = _selection[0].ToRecordset();
  62. if (_recordset.Dataset.Name != ComsStatic.gsGuanXian.Name || _recordset.RecordCount != 1)
  63. {
  64. Sunny.UI.UIMessageTip.ShowError("仅可以选择供水管线图层!"); return;
  65. }
  66. _recordset.MoveFirst();
  67. uitb_cz.Text = _recordset.GetFieldValue("cz")?.ToString();
  68. uitb_gj.Text = _recordset.GetFieldValue("gj").ToString();
  69. uitb_dzms.Text = _recordset.GetFieldValue("dzms")?.ToString();
  70. uitb_tz.Text = _recordset.GetFieldValue("tz")?.ToString();
  71. uitb_msfs.Text = _recordset.GetFieldValue("msfs")?.ToString();
  72. uidp_msrq.Text = _recordset.GetFieldValue("msrq")?.ToString();
  73. uitb_yl.Text = _recordset.GetFieldValue("yl")?.ToString();
  74. uitbGdbh.Text = _recordset.GetFieldValue("gdbh")?.ToString();
  75. uitb_cd.Text = _recordset.GetFieldValue("cd").ToString();
  76. uitb_bz.Text = _recordset.GetFieldValue("bz")?.ToString();
  77. uitb_qsdw.Text = _recordset.GetFieldValue("qsdw")?.ToString();
  78. uitb_tcdw.Text = _recordset.GetFieldValue("tcdw")?.ToString();
  79. }
  80. public override object Do(DockPanel dockPanel = null)
  81. {
  82. if (_recordset is null) { UIMessageTip.ShowError("请先选择需要操作的元素"); return false; }
  83. _recordset.Edit();
  84. _recordset.SetFieldValue("enabled", 0);
  85. ComsStatic.ShowUIMessageTipOKorError(_recordset.Update(), "管线废弃", _recordset.GetFieldValue("bsm").ToString());
  86. _recordset = null;
  87. return null;
  88. }
  89. public override void AfterClose()
  90. {
  91. MapControl.GeometrySelectChanged -= MapControl_GeometrySelectChanged;
  92. ComsStatic.RecordsetDispose(_recordset);
  93. base.AfterClose();
  94. }
  95. private void InitializeComponent()
  96. {
  97. this.uiLabel2 = new Sunny.UI.UILabel();
  98. this.uiLabel1 = new Sunny.UI.UILabel();
  99. this.uiLabel14 = new Sunny.UI.UILabel();
  100. this.uitbGdbh = new Sunny.UI.UITextBox();
  101. this.uitb_bz = new Sunny.UI.UITextBox();
  102. this.uiLabel13 = new Sunny.UI.UILabel();
  103. this.uidp_msrq = new Sunny.UI.UIDatePicker();
  104. this.uiLabel11 = new Sunny.UI.UILabel();
  105. this.uitb_yl = new Sunny.UI.UITextBox();
  106. this.uiLabel12 = new Sunny.UI.UILabel();
  107. this.uitb_cd = new Sunny.UI.UITextBox();
  108. this.uiLabel9 = new Sunny.UI.UILabel();
  109. this.uitb_qsdw = new Sunny.UI.UITextBox();
  110. this.uiLabel10 = new Sunny.UI.UILabel();
  111. this.uitb_tcdw = new Sunny.UI.UITextBox();
  112. this.uitb_gj = new Sunny.UI.UITextBox();
  113. this.uiLabel5 = new Sunny.UI.UILabel();
  114. this.uiLabel4 = new Sunny.UI.UILabel();
  115. this.uitb_msfs = new Sunny.UI.UITextBox();
  116. this.uitb_cz = new Sunny.UI.UITextBox();
  117. this.uiLabel6 = new Sunny.UI.UILabel();
  118. this.uiLabel3 = new Sunny.UI.UILabel();
  119. this.uitb_dzms = new Sunny.UI.UITextBox();
  120. this.uitb_tz = new Sunny.UI.UITextBox();
  121. this.uiLabel7 = new Sunny.UI.UILabel();
  122. this.uiLabel8 = new Sunny.UI.UILabel();
  123. this.SuspendLayout();
  124. //
  125. // uiLabel2
  126. //
  127. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F);
  128. this.uiLabel2.Location = new System.Drawing.Point(422, 91);
  129. this.uiLabel2.Name = "uiLabel2";
  130. this.uiLabel2.Size = new System.Drawing.Size(53, 23);
  131. this.uiLabel2.Style = Sunny.UI.UIStyle.Gray;
  132. this.uiLabel2.TabIndex = 53;
  133. this.uiLabel2.Text = "M";
  134. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  135. //
  136. // uiLabel1
  137. //
  138. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F);
  139. this.uiLabel1.Location = new System.Drawing.Point(422, 51);
  140. this.uiLabel1.Name = "uiLabel1";
  141. this.uiLabel1.Size = new System.Drawing.Size(53, 23);
  142. this.uiLabel1.Style = Sunny.UI.UIStyle.Gray;
  143. this.uiLabel1.TabIndex = 52;
  144. this.uiLabel1.Text = "mm";
  145. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  146. //
  147. // uiLabel14
  148. //
  149. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F);
  150. this.uiLabel14.Location = new System.Drawing.Point(6, 9);
  151. this.uiLabel14.Name = "uiLabel14";
  152. this.uiLabel14.Size = new System.Drawing.Size(92, 23);
  153. this.uiLabel14.Style = Sunny.UI.UIStyle.Gray;
  154. this.uiLabel14.TabIndex = 51;
  155. this.uiLabel14.Text = "管段编号:";
  156. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  157. //
  158. // uitbGdbh
  159. //
  160. this.uitbGdbh.Cursor = System.Windows.Forms.Cursors.IBeam;
  161. this.uitbGdbh.Enabled = false;
  162. this.uitbGdbh.FillColor = System.Drawing.Color.White;
  163. this.uitbGdbh.Font = new System.Drawing.Font("微软雅黑", 12F);
  164. this.uitbGdbh.Location = new System.Drawing.Point(102, 9);
  165. this.uitbGdbh.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  166. this.uitbGdbh.Maximum = 2147483647D;
  167. this.uitbGdbh.Minimum = -2147483648D;
  168. this.uitbGdbh.MinimumSize = new System.Drawing.Size(1, 1);
  169. this.uitbGdbh.Name = "uitbGdbh";
  170. this.uitbGdbh.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  171. this.uitbGdbh.Size = new System.Drawing.Size(130, 29);
  172. this.uitbGdbh.Style = Sunny.UI.UIStyle.Gray;
  173. this.uitbGdbh.TabIndex = 34;
  174. this.uitbGdbh.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  175. //
  176. // uitb_bz
  177. //
  178. this.uitb_bz.Cursor = System.Windows.Forms.Cursors.IBeam;
  179. this.uitb_bz.FillColor = System.Drawing.Color.White;
  180. this.uitb_bz.Font = new System.Drawing.Font("微软雅黑", 12F);
  181. this.uitb_bz.Location = new System.Drawing.Point(102, 282);
  182. this.uitb_bz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  183. this.uitb_bz.Maximum = 2147483647D;
  184. this.uitb_bz.MaxLength = 50;
  185. this.uitb_bz.Minimum = -2147483648D;
  186. this.uitb_bz.MinimumSize = new System.Drawing.Size(1, 1);
  187. this.uitb_bz.Name = "uitb_bz";
  188. this.uitb_bz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  189. this.uitb_bz.Size = new System.Drawing.Size(364, 29);
  190. this.uitb_bz.Style = Sunny.UI.UIStyle.Gray;
  191. this.uitb_bz.TabIndex = 43;
  192. this.uitb_bz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  193. //
  194. // uiLabel13
  195. //
  196. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F);
  197. this.uiLabel13.Location = new System.Drawing.Point(6, 282);
  198. this.uiLabel13.Name = "uiLabel13";
  199. this.uiLabel13.Size = new System.Drawing.Size(92, 23);
  200. this.uiLabel13.Style = Sunny.UI.UIStyle.Gray;
  201. this.uiLabel13.TabIndex = 50;
  202. this.uiLabel13.Text = "备注:";
  203. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  204. //
  205. // uidp_msrq
  206. //
  207. this.uidp_msrq.FillColor = System.Drawing.Color.White;
  208. this.uidp_msrq.Font = new System.Drawing.Font("微软雅黑", 12F);
  209. this.uidp_msrq.Location = new System.Drawing.Point(336, 128);
  210. this.uidp_msrq.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  211. this.uidp_msrq.MaxLength = 10;
  212. this.uidp_msrq.MinimumSize = new System.Drawing.Size(63, 0);
  213. this.uidp_msrq.Name = "uidp_msrq";
  214. this.uidp_msrq.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  215. this.uidp_msrq.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  216. this.uidp_msrq.Size = new System.Drawing.Size(130, 29);
  217. this.uidp_msrq.Style = Sunny.UI.UIStyle.Gray;
  218. this.uidp_msrq.SymbolDropDown = 61555;
  219. this.uidp_msrq.SymbolNormal = 61555;
  220. this.uidp_msrq.TabIndex = 49;
  221. this.uidp_msrq.Text = "2020-01-01";
  222. this.uidp_msrq.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  223. this.uidp_msrq.Value = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
  224. //
  225. // uiLabel11
  226. //
  227. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 12F);
  228. this.uiLabel11.Location = new System.Drawing.Point(239, 91);
  229. this.uiLabel11.Name = "uiLabel11";
  230. this.uiLabel11.Size = new System.Drawing.Size(92, 23);
  231. this.uiLabel11.Style = Sunny.UI.UIStyle.Gray;
  232. this.uiLabel11.TabIndex = 48;
  233. this.uiLabel11.Text = "长度:";
  234. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  235. //
  236. // uitb_yl
  237. //
  238. this.uitb_yl.Cursor = System.Windows.Forms.Cursors.IBeam;
  239. this.uitb_yl.FillColor = System.Drawing.Color.White;
  240. this.uitb_yl.Font = new System.Drawing.Font("微软雅黑", 12F);
  241. this.uitb_yl.Location = new System.Drawing.Point(102, 87);
  242. this.uitb_yl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  243. this.uitb_yl.Maximum = 2147483647D;
  244. this.uitb_yl.MaxLength = 10;
  245. this.uitb_yl.Minimum = -2147483648D;
  246. this.uitb_yl.MinimumSize = new System.Drawing.Size(1, 1);
  247. this.uitb_yl.Name = "uitb_yl";
  248. this.uitb_yl.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  249. this.uitb_yl.Size = new System.Drawing.Size(130, 29);
  250. this.uitb_yl.Style = Sunny.UI.UIStyle.Gray;
  251. this.uitb_yl.TabIndex = 35;
  252. this.uitb_yl.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  253. //
  254. // uiLabel12
  255. //
  256. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F);
  257. this.uiLabel12.Location = new System.Drawing.Point(6, 87);
  258. this.uiLabel12.Name = "uiLabel12";
  259. this.uiLabel12.Size = new System.Drawing.Size(92, 23);
  260. this.uiLabel12.Style = Sunny.UI.UIStyle.Gray;
  261. this.uiLabel12.TabIndex = 47;
  262. this.uiLabel12.Text = "压力:";
  263. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  264. //
  265. // uitb_cd
  266. //
  267. this.uitb_cd.Cursor = System.Windows.Forms.Cursors.IBeam;
  268. this.uitb_cd.FillColor = System.Drawing.Color.White;
  269. this.uitb_cd.Font = new System.Drawing.Font("微软雅黑", 12F);
  270. this.uitb_cd.Location = new System.Drawing.Point(336, 85);
  271. this.uitb_cd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  272. this.uitb_cd.Maximum = 2147483647D;
  273. this.uitb_cd.Minimum = -2147483648D;
  274. this.uitb_cd.MinimumSize = new System.Drawing.Size(1, 1);
  275. this.uitb_cd.Name = "uitb_cd";
  276. this.uitb_cd.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  277. this.uitb_cd.Size = new System.Drawing.Size(79, 29);
  278. this.uitb_cd.Style = Sunny.UI.UIStyle.Gray;
  279. this.uitb_cd.TabIndex = 33;
  280. this.uitb_cd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  281. //
  282. // uiLabel9
  283. //
  284. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F);
  285. this.uiLabel9.Location = new System.Drawing.Point(6, 243);
  286. this.uiLabel9.Name = "uiLabel9";
  287. this.uiLabel9.Size = new System.Drawing.Size(92, 23);
  288. this.uiLabel9.Style = Sunny.UI.UIStyle.Gray;
  289. this.uiLabel9.TabIndex = 46;
  290. this.uiLabel9.Text = "探测单位:";
  291. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  292. //
  293. // uitb_qsdw
  294. //
  295. this.uitb_qsdw.Cursor = System.Windows.Forms.Cursors.IBeam;
  296. this.uitb_qsdw.FillColor = System.Drawing.Color.White;
  297. this.uitb_qsdw.Font = new System.Drawing.Font("微软雅黑", 12F);
  298. this.uitb_qsdw.Location = new System.Drawing.Point(102, 204);
  299. this.uitb_qsdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  300. this.uitb_qsdw.Maximum = 2147483647D;
  301. this.uitb_qsdw.MaxLength = 20;
  302. this.uitb_qsdw.Minimum = -2147483648D;
  303. this.uitb_qsdw.MinimumSize = new System.Drawing.Size(1, 1);
  304. this.uitb_qsdw.Name = "uitb_qsdw";
  305. this.uitb_qsdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  306. this.uitb_qsdw.Size = new System.Drawing.Size(364, 29);
  307. this.uitb_qsdw.Style = Sunny.UI.UIStyle.Gray;
  308. this.uitb_qsdw.TabIndex = 40;
  309. this.uitb_qsdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  310. //
  311. // uiLabel10
  312. //
  313. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F);
  314. this.uiLabel10.Location = new System.Drawing.Point(6, 204);
  315. this.uiLabel10.Name = "uiLabel10";
  316. this.uiLabel10.Size = new System.Drawing.Size(92, 23);
  317. this.uiLabel10.Style = Sunny.UI.UIStyle.Gray;
  318. this.uiLabel10.TabIndex = 45;
  319. this.uiLabel10.Text = "权属单位:";
  320. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  321. //
  322. // uitb_tcdw
  323. //
  324. this.uitb_tcdw.Cursor = System.Windows.Forms.Cursors.IBeam;
  325. this.uitb_tcdw.FillColor = System.Drawing.Color.White;
  326. this.uitb_tcdw.Font = new System.Drawing.Font("微软雅黑", 12F);
  327. this.uitb_tcdw.Location = new System.Drawing.Point(102, 243);
  328. this.uitb_tcdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  329. this.uitb_tcdw.Maximum = 2147483647D;
  330. this.uitb_tcdw.MaxLength = 20;
  331. this.uitb_tcdw.Minimum = -2147483648D;
  332. this.uitb_tcdw.MinimumSize = new System.Drawing.Size(1, 1);
  333. this.uitb_tcdw.Name = "uitb_tcdw";
  334. this.uitb_tcdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  335. this.uitb_tcdw.Size = new System.Drawing.Size(364, 29);
  336. this.uitb_tcdw.Style = Sunny.UI.UIStyle.Gray;
  337. this.uitb_tcdw.TabIndex = 41;
  338. this.uitb_tcdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  339. //
  340. // uitb_gj
  341. //
  342. this.uitb_gj.Cursor = System.Windows.Forms.Cursors.IBeam;
  343. this.uitb_gj.FillColor = System.Drawing.Color.White;
  344. this.uitb_gj.Font = new System.Drawing.Font("微软雅黑", 12F);
  345. this.uitb_gj.Location = new System.Drawing.Point(336, 45);
  346. this.uitb_gj.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  347. this.uitb_gj.Maximum = 2147483647D;
  348. this.uitb_gj.MaxLength = 10;
  349. this.uitb_gj.Minimum = -2147483648D;
  350. this.uitb_gj.MinimumSize = new System.Drawing.Size(1, 1);
  351. this.uitb_gj.Name = "uitb_gj";
  352. this.uitb_gj.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  353. this.uitb_gj.Size = new System.Drawing.Size(79, 29);
  354. this.uitb_gj.Style = Sunny.UI.UIStyle.Gray;
  355. this.uitb_gj.TabIndex = 30;
  356. this.uitb_gj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  357. //
  358. // uiLabel5
  359. //
  360. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F);
  361. this.uiLabel5.Location = new System.Drawing.Point(239, 129);
  362. this.uiLabel5.Name = "uiLabel5";
  363. this.uiLabel5.Size = new System.Drawing.Size(92, 23);
  364. this.uiLabel5.Style = Sunny.UI.UIStyle.Gray;
  365. this.uiLabel5.TabIndex = 44;
  366. this.uiLabel5.Text = "埋设日期:";
  367. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  368. //
  369. // uiLabel4
  370. //
  371. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F);
  372. this.uiLabel4.Location = new System.Drawing.Point(239, 51);
  373. this.uiLabel4.Name = "uiLabel4";
  374. this.uiLabel4.Size = new System.Drawing.Size(92, 23);
  375. this.uiLabel4.Style = Sunny.UI.UIStyle.Gray;
  376. this.uiLabel4.TabIndex = 32;
  377. this.uiLabel4.Text = "管径:";
  378. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  379. //
  380. // uitb_msfs
  381. //
  382. this.uitb_msfs.Cursor = System.Windows.Forms.Cursors.IBeam;
  383. this.uitb_msfs.FillColor = System.Drawing.Color.White;
  384. this.uitb_msfs.Font = new System.Drawing.Font("微软雅黑", 12F);
  385. this.uitb_msfs.Location = new System.Drawing.Point(102, 126);
  386. this.uitb_msfs.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  387. this.uitb_msfs.Maximum = 2147483647D;
  388. this.uitb_msfs.MaxLength = 10;
  389. this.uitb_msfs.Minimum = -2147483648D;
  390. this.uitb_msfs.MinimumSize = new System.Drawing.Size(1, 1);
  391. this.uitb_msfs.Name = "uitb_msfs";
  392. this.uitb_msfs.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  393. this.uitb_msfs.Size = new System.Drawing.Size(130, 29);
  394. this.uitb_msfs.Style = Sunny.UI.UIStyle.Gray;
  395. this.uitb_msfs.TabIndex = 37;
  396. this.uitb_msfs.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  397. //
  398. // uitb_cz
  399. //
  400. this.uitb_cz.Cursor = System.Windows.Forms.Cursors.IBeam;
  401. this.uitb_cz.FillColor = System.Drawing.Color.White;
  402. this.uitb_cz.Font = new System.Drawing.Font("微软雅黑", 12F);
  403. this.uitb_cz.Location = new System.Drawing.Point(102, 48);
  404. this.uitb_cz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  405. this.uitb_cz.Maximum = 2147483647D;
  406. this.uitb_cz.MaxLength = 10;
  407. this.uitb_cz.Minimum = -2147483648D;
  408. this.uitb_cz.MinimumSize = new System.Drawing.Size(1, 1);
  409. this.uitb_cz.Name = "uitb_cz";
  410. this.uitb_cz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  411. this.uitb_cz.Size = new System.Drawing.Size(130, 29);
  412. this.uitb_cz.Style = Sunny.UI.UIStyle.Gray;
  413. this.uitb_cz.TabIndex = 28;
  414. this.uitb_cz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  415. //
  416. // uiLabel6
  417. //
  418. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F);
  419. this.uiLabel6.Location = new System.Drawing.Point(6, 126);
  420. this.uiLabel6.Name = "uiLabel6";
  421. this.uiLabel6.Size = new System.Drawing.Size(92, 23);
  422. this.uiLabel6.Style = Sunny.UI.UIStyle.Gray;
  423. this.uiLabel6.TabIndex = 42;
  424. this.uiLabel6.Text = "埋设方式:";
  425. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  426. //
  427. // uiLabel3
  428. //
  429. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F);
  430. this.uiLabel3.Location = new System.Drawing.Point(6, 48);
  431. this.uiLabel3.Name = "uiLabel3";
  432. this.uiLabel3.Size = new System.Drawing.Size(92, 23);
  433. this.uiLabel3.Style = Sunny.UI.UIStyle.Gray;
  434. this.uiLabel3.TabIndex = 29;
  435. this.uiLabel3.Text = "管线材质:";
  436. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  437. //
  438. // uitb_dzms
  439. //
  440. this.uitb_dzms.Cursor = System.Windows.Forms.Cursors.IBeam;
  441. this.uitb_dzms.FillColor = System.Drawing.Color.White;
  442. this.uitb_dzms.Font = new System.Drawing.Font("微软雅黑", 12F);
  443. this.uitb_dzms.Location = new System.Drawing.Point(102, 165);
  444. this.uitb_dzms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  445. this.uitb_dzms.Maximum = 2147483647D;
  446. this.uitb_dzms.MaxLength = 20;
  447. this.uitb_dzms.Minimum = -2147483648D;
  448. this.uitb_dzms.MinimumSize = new System.Drawing.Size(1, 1);
  449. this.uitb_dzms.Name = "uitb_dzms";
  450. this.uitb_dzms.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  451. this.uitb_dzms.Size = new System.Drawing.Size(364, 29);
  452. this.uitb_dzms.Style = Sunny.UI.UIStyle.Gray;
  453. this.uitb_dzms.TabIndex = 38;
  454. this.uitb_dzms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  455. //
  456. // uitb_tz
  457. //
  458. this.uitb_tz.Cursor = System.Windows.Forms.Cursors.IBeam;
  459. this.uitb_tz.FillColor = System.Drawing.Color.White;
  460. this.uitb_tz.Font = new System.Drawing.Font("微软雅黑", 12F);
  461. this.uitb_tz.Location = new System.Drawing.Point(336, 7);
  462. this.uitb_tz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  463. this.uitb_tz.Maximum = 2147483647D;
  464. this.uitb_tz.MaxLength = 10;
  465. this.uitb_tz.Minimum = -2147483648D;
  466. this.uitb_tz.MinimumSize = new System.Drawing.Size(1, 1);
  467. this.uitb_tz.Name = "uitb_tz";
  468. this.uitb_tz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  469. this.uitb_tz.Size = new System.Drawing.Size(130, 29);
  470. this.uitb_tz.Style = Sunny.UI.UIStyle.Gray;
  471. this.uitb_tz.TabIndex = 31;
  472. this.uitb_tz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  473. //
  474. // uiLabel7
  475. //
  476. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F);
  477. this.uiLabel7.Location = new System.Drawing.Point(6, 165);
  478. this.uiLabel7.Name = "uiLabel7";
  479. this.uiLabel7.Size = new System.Drawing.Size(92, 23);
  480. this.uiLabel7.Style = Sunny.UI.UIStyle.Gray;
  481. this.uiLabel7.TabIndex = 39;
  482. this.uiLabel7.Text = "地址描述:";
  483. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  484. //
  485. // uiLabel8
  486. //
  487. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F);
  488. this.uiLabel8.Location = new System.Drawing.Point(239, 9);
  489. this.uiLabel8.Name = "uiLabel8";
  490. this.uiLabel8.Size = new System.Drawing.Size(92, 23);
  491. this.uiLabel8.Style = Sunny.UI.UIStyle.Gray;
  492. this.uiLabel8.TabIndex = 36;
  493. this.uiLabel8.Text = "特征:";
  494. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  495. //
  496. // GuanXianFeiQi
  497. //
  498. this.Controls.Add(this.uiLabel2);
  499. this.Controls.Add(this.uiLabel1);
  500. this.Controls.Add(this.uiLabel14);
  501. this.Controls.Add(this.uitbGdbh);
  502. this.Controls.Add(this.uitb_bz);
  503. this.Controls.Add(this.uiLabel13);
  504. this.Controls.Add(this.uidp_msrq);
  505. this.Controls.Add(this.uiLabel11);
  506. this.Controls.Add(this.uitb_yl);
  507. this.Controls.Add(this.uiLabel12);
  508. this.Controls.Add(this.uitb_cd);
  509. this.Controls.Add(this.uiLabel9);
  510. this.Controls.Add(this.uitb_qsdw);
  511. this.Controls.Add(this.uiLabel10);
  512. this.Controls.Add(this.uitb_tcdw);
  513. this.Controls.Add(this.uitb_gj);
  514. this.Controls.Add(this.uiLabel5);
  515. this.Controls.Add(this.uiLabel4);
  516. this.Controls.Add(this.uitb_msfs);
  517. this.Controls.Add(this.uitb_cz);
  518. this.Controls.Add(this.uiLabel6);
  519. this.Controls.Add(this.uiLabel3);
  520. this.Controls.Add(this.uitb_dzms);
  521. this.Controls.Add(this.uitb_tz);
  522. this.Controls.Add(this.uiLabel7);
  523. this.Controls.Add(this.uiLabel8);
  524. this.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244)))));
  525. this.Name = "GuanXianFeiQi";
  526. this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  527. this.Size = new System.Drawing.Size(500, 315);
  528. this.Style = Sunny.UI.UIStyle.Gray;
  529. this.ResumeLayout(false);
  530. }
  531. }
  532. }