GuanDianShanChu.cs 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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 GuanDianShanChu : ConditionPanel
  15. {
  16. private UILabel labName;
  17. private UILabel tbValue;
  18. private UILabel uiLabel18;
  19. private UITextBox uitb_dmgc;
  20. private UITextBox uitb_kj;
  21. private UITextBox uitb_gg;
  22. private UILabel uiLabel17;
  23. private UITextBox uitb_fsw;
  24. private UILabel uiLabel15;
  25. private UILabel uiLabel14;
  26. private UITextBox uitb_xh;
  27. private UILabel uiLabel16;
  28. private UITextBox uitb_bz;
  29. private UILabel uiLabel13;
  30. private UIDatePicker uidp_msrq;
  31. private UILabel uiLabel11;
  32. private UITextBox uitb_yl;
  33. private UILabel uiLabel12;
  34. private UITextBox uitb_ms;
  35. private UILabel uiLabel9;
  36. private UITextBox uitb_qsdw;
  37. private UILabel uiLabel10;
  38. private UITextBox uitb_tcdw;
  39. private UITextBox uitb_gj;
  40. private UILabel uiLabel5;
  41. private UILabel uiLabel4;
  42. private UITextBox uitb_msfs;
  43. private UITextBox uitb_cz;
  44. private UILabel uiLabel6;
  45. private UILabel uiLabel3;
  46. private UITextBox uitb_dzms;
  47. private UITextBox uitb_fldm;
  48. private UITextBox uitb_tz;
  49. private UILabel uiLabel7;
  50. private UITextBox uitb_bsm;
  51. private UILabel uiLabel8;
  52. private UILabel uiLabel2;
  53. private UILabel uiLabel1;
  54. private Recordset _recordset = null;
  55. public GuanDianShanChu() : base()
  56. {
  57. this.ConditionPanelName = "删除管点信息";
  58. this.SetSize(560, 585);
  59. this.IsShowResultWindow = false;
  60. InitializeComponent();
  61. }
  62. protected override void OnLoad(EventArgs e)
  63. {
  64. ComsStatic.SetLayersIsSelectableFalse(ComsStatic.dvJSLK.Name, false);
  65. MapControl.GeometrySelectChanged += MapControl_GeometrySelectChanged;
  66. }
  67. private void MapControl_GeometrySelectChanged(object sender, GeometrySelectChangedEventArgs e)
  68. {
  69. Selection[] _selection = base.MapControl.Map.FindSelection(true);
  70. if (_selection.Length != 1 || _selection[0].Count != 1)
  71. {
  72. Sunny.UI.UIMessageTip.ShowError("仅可以选择一个需要删除的管点信息!"); return;
  73. }
  74. _recordset = _selection[0].ToRecordset();
  75. _recordset.MoveFirst();
  76. uitb_bsm.Text = _recordset.GetFieldValue("bsm").ToString();
  77. uitb_fldm.Text = _recordset.GetFieldValue("fldm")?.ToString();
  78. uitb_fsw.Text = _recordset.GetFieldValue("fsw")?.ToString();
  79. uitb_tz.Text = _recordset.GetFieldValue("tz")?.ToString();
  80. uitb_xh.Text = _recordset.GetFieldValue("xh")?.ToString();
  81. uitb_gg.Text = _recordset.GetFieldValue("gg")?.ToString();
  82. uitb_cz.Text = _recordset.GetFieldValue("cz")?.ToString();
  83. uitb_yl.Text = _recordset.GetFieldValue("gj").ToString();
  84. uitb_yl.Text = _recordset.GetFieldValue("kj")?.ToString();
  85. uitb_yl.Text = _recordset.GetFieldValue("yl")?.ToString();
  86. uitb_dmgc.Text = _recordset.GetFieldValue("dmgc").ToString();
  87. uitb_ms.Text = _recordset.GetFieldValue("ms").ToString();
  88. uitb_msfs.Text = _recordset.GetFieldValue("msfs")?.ToString();
  89. uidp_msrq.Text = _recordset.GetFieldValue("msrq")?.ToString();
  90. uitb_dzms.Text = _recordset.GetFieldValue("dzms")?.ToString();
  91. uitb_qsdw.Text = _recordset.GetFieldValue("qsdw")?.ToString();
  92. uitb_tcdw.Text = _recordset.GetFieldValue("tcdw")?.ToString();
  93. uitb_bz.Text = _recordset.GetFieldValue("bz")?.ToString();
  94. }
  95. public override object Do(DockPanel dockPanel = null)
  96. {
  97. if (_recordset is null) { UIMessageTip.ShowError("请先选择需要删除的元素"); return false; }
  98. if (_recordset.Dataset.Name == ComsStatic.dvJSJDPT.Name)
  99. {
  100. int jslkCount = ComsStatic.dvJSLK.Query(string.Format(" qsdh='{0}' or zddh='{0}' ", uitb_bsm.Text), CursorType.Static).RecordCount;
  101. if (jslkCount > 0)
  102. {
  103. UIMessageTip.ShowError("当前管点在管线中用到,禁止删除");
  104. return false;
  105. }
  106. }
  107. ComsStatic.ShowUIMessageTipOKorError(_recordset.Delete(), "管点删除");
  108. MapControl.Map.Refresh();
  109. return null;
  110. }
  111. public override void AfterClose()
  112. {
  113. MapControl.GeometrySelectChanged -= MapControl_GeometrySelectChanged;
  114. ComsStatic.RecordsetDispose(_recordset);
  115. base.AfterClose();
  116. }
  117. private void InitializeComponent()
  118. {
  119. this.uiLabel18 = new Sunny.UI.UILabel();
  120. this.uitb_dmgc = new Sunny.UI.UITextBox();
  121. this.uitb_kj = new Sunny.UI.UITextBox();
  122. this.uitb_gg = new Sunny.UI.UITextBox();
  123. this.uiLabel17 = new Sunny.UI.UILabel();
  124. this.uitb_fsw = new Sunny.UI.UITextBox();
  125. this.uiLabel15 = new Sunny.UI.UILabel();
  126. this.uiLabel14 = new Sunny.UI.UILabel();
  127. this.uitb_xh = new Sunny.UI.UITextBox();
  128. this.uiLabel16 = new Sunny.UI.UILabel();
  129. this.uitb_bz = new Sunny.UI.UITextBox();
  130. this.uiLabel13 = new Sunny.UI.UILabel();
  131. this.uidp_msrq = new Sunny.UI.UIDatePicker();
  132. this.uiLabel11 = new Sunny.UI.UILabel();
  133. this.uitb_yl = new Sunny.UI.UITextBox();
  134. this.uiLabel12 = new Sunny.UI.UILabel();
  135. this.uitb_ms = new Sunny.UI.UITextBox();
  136. this.uiLabel9 = new Sunny.UI.UILabel();
  137. this.uitb_qsdw = new Sunny.UI.UITextBox();
  138. this.uiLabel10 = new Sunny.UI.UILabel();
  139. this.uitb_tcdw = new Sunny.UI.UITextBox();
  140. this.uitb_gj = new Sunny.UI.UITextBox();
  141. this.uiLabel5 = new Sunny.UI.UILabel();
  142. this.uiLabel4 = new Sunny.UI.UILabel();
  143. this.uitb_msfs = new Sunny.UI.UITextBox();
  144. this.uitb_cz = new Sunny.UI.UITextBox();
  145. this.uiLabel6 = new Sunny.UI.UILabel();
  146. this.uiLabel3 = new Sunny.UI.UILabel();
  147. this.uitb_dzms = new Sunny.UI.UITextBox();
  148. this.uitb_fldm = new Sunny.UI.UITextBox();
  149. this.uitb_tz = new Sunny.UI.UITextBox();
  150. this.uiLabel7 = new Sunny.UI.UILabel();
  151. this.uitb_bsm = new Sunny.UI.UITextBox();
  152. this.uiLabel8 = new Sunny.UI.UILabel();
  153. this.uiLabel2 = new Sunny.UI.UILabel();
  154. this.uiLabel1 = new Sunny.UI.UILabel();
  155. this.SuspendLayout();
  156. //
  157. // uiLabel18
  158. //
  159. this.uiLabel18.Enabled = false;
  160. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 12F);
  161. this.uiLabel18.Location = new System.Drawing.Point(12, 224);
  162. this.uiLabel18.Name = "uiLabel18";
  163. this.uiLabel18.Size = new System.Drawing.Size(92, 23);
  164. this.uiLabel18.Style = Sunny.UI.UIStyle.Gray;
  165. this.uiLabel18.TabIndex = 63;
  166. this.uiLabel18.Text = "地面高程:";
  167. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  168. //
  169. // uitb_dmgc
  170. //
  171. this.uitb_dmgc.Cursor = System.Windows.Forms.Cursors.IBeam;
  172. this.uitb_dmgc.Enabled = false;
  173. this.uitb_dmgc.FillColor = System.Drawing.Color.White;
  174. this.uitb_dmgc.Font = new System.Drawing.Font("微软雅黑", 12F);
  175. this.uitb_dmgc.Location = new System.Drawing.Point(117, 224);
  176. this.uitb_dmgc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  177. this.uitb_dmgc.Maximum = 2147483647D;
  178. this.uitb_dmgc.Minimum = -2147483648D;
  179. this.uitb_dmgc.MinimumSize = new System.Drawing.Size(1, 1);
  180. this.uitb_dmgc.Name = "uitb_dmgc";
  181. this.uitb_dmgc.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  182. this.uitb_dmgc.Size = new System.Drawing.Size(150, 29);
  183. this.uitb_dmgc.Style = Sunny.UI.UIStyle.Gray;
  184. this.uitb_dmgc.TabIndex = 48;
  185. this.uitb_dmgc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  186. //
  187. // uitb_kj
  188. //
  189. this.uitb_kj.Cursor = System.Windows.Forms.Cursors.IBeam;
  190. this.uitb_kj.Enabled = false;
  191. this.uitb_kj.FillColor = System.Drawing.Color.White;
  192. this.uitb_kj.Font = new System.Drawing.Font("微软雅黑", 12F);
  193. this.uitb_kj.Location = new System.Drawing.Point(117, 181);
  194. this.uitb_kj.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  195. this.uitb_kj.Maximum = 2147483647D;
  196. this.uitb_kj.MaxLength = 10;
  197. this.uitb_kj.Minimum = -2147483648D;
  198. this.uitb_kj.MinimumSize = new System.Drawing.Size(1, 1);
  199. this.uitb_kj.Name = "uitb_kj";
  200. this.uitb_kj.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  201. this.uitb_kj.Size = new System.Drawing.Size(150, 29);
  202. this.uitb_kj.Style = Sunny.UI.UIStyle.Gray;
  203. this.uitb_kj.TabIndex = 44;
  204. this.uitb_kj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  205. //
  206. // uitb_gg
  207. //
  208. this.uitb_gg.Cursor = System.Windows.Forms.Cursors.IBeam;
  209. this.uitb_gg.Enabled = false;
  210. this.uitb_gg.FillColor = System.Drawing.Color.White;
  211. this.uitb_gg.Font = new System.Drawing.Font("微软雅黑", 12F);
  212. this.uitb_gg.Location = new System.Drawing.Point(386, 96);
  213. this.uitb_gg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  214. this.uitb_gg.Maximum = 2147483647D;
  215. this.uitb_gg.MaxLength = 10;
  216. this.uitb_gg.Minimum = -2147483648D;
  217. this.uitb_gg.MinimumSize = new System.Drawing.Size(1, 1);
  218. this.uitb_gg.Name = "uitb_gg";
  219. this.uitb_gg.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  220. this.uitb_gg.Size = new System.Drawing.Size(150, 29);
  221. this.uitb_gg.Style = Sunny.UI.UIStyle.Gray;
  222. this.uitb_gg.TabIndex = 39;
  223. this.uitb_gg.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  224. //
  225. // uiLabel17
  226. //
  227. this.uiLabel17.Enabled = false;
  228. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 12F);
  229. this.uiLabel17.Location = new System.Drawing.Point(12, 181);
  230. this.uiLabel17.Name = "uiLabel17";
  231. this.uiLabel17.Size = new System.Drawing.Size(92, 23);
  232. this.uiLabel17.Style = Sunny.UI.UIStyle.Gray;
  233. this.uiLabel17.TabIndex = 36;
  234. this.uiLabel17.Text = "口径:";
  235. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  236. //
  237. // uitb_fsw
  238. //
  239. this.uitb_fsw.Cursor = System.Windows.Forms.Cursors.IBeam;
  240. this.uitb_fsw.Enabled = false;
  241. this.uitb_fsw.FillColor = System.Drawing.Color.White;
  242. this.uitb_fsw.Font = new System.Drawing.Font("微软雅黑", 12F);
  243. this.uitb_fsw.Location = new System.Drawing.Point(117, 52);
  244. this.uitb_fsw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  245. this.uitb_fsw.Maximum = 2147483647D;
  246. this.uitb_fsw.MaxLength = 10;
  247. this.uitb_fsw.Minimum = -2147483648D;
  248. this.uitb_fsw.MinimumSize = new System.Drawing.Size(1, 1);
  249. this.uitb_fsw.Name = "uitb_fsw";
  250. this.uitb_fsw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  251. this.uitb_fsw.Size = new System.Drawing.Size(150, 29);
  252. this.uitb_fsw.Style = Sunny.UI.UIStyle.Gray;
  253. this.uitb_fsw.TabIndex = 32;
  254. this.uitb_fsw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  255. //
  256. // uiLabel15
  257. //
  258. this.uiLabel15.Enabled = false;
  259. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 12F);
  260. this.uiLabel15.Location = new System.Drawing.Point(280, 95);
  261. this.uiLabel15.Name = "uiLabel15";
  262. this.uiLabel15.Size = new System.Drawing.Size(92, 23);
  263. this.uiLabel15.Style = Sunny.UI.UIStyle.Gray;
  264. this.uiLabel15.TabIndex = 47;
  265. this.uiLabel15.Text = "规格:";
  266. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  267. //
  268. // uiLabel14
  269. //
  270. this.uiLabel14.Enabled = false;
  271. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F);
  272. this.uiLabel14.Location = new System.Drawing.Point(12, 52);
  273. this.uiLabel14.Name = "uiLabel14";
  274. this.uiLabel14.Size = new System.Drawing.Size(92, 23);
  275. this.uiLabel14.Style = Sunny.UI.UIStyle.Gray;
  276. this.uiLabel14.TabIndex = 37;
  277. this.uiLabel14.Text = "附属物:";
  278. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  279. //
  280. // uitb_xh
  281. //
  282. this.uitb_xh.Cursor = System.Windows.Forms.Cursors.IBeam;
  283. this.uitb_xh.Enabled = false;
  284. this.uitb_xh.FillColor = System.Drawing.Color.White;
  285. this.uitb_xh.Font = new System.Drawing.Font("微软雅黑", 12F);
  286. this.uitb_xh.Location = new System.Drawing.Point(117, 95);
  287. this.uitb_xh.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  288. this.uitb_xh.Maximum = 2147483647D;
  289. this.uitb_xh.MaxLength = 10;
  290. this.uitb_xh.Minimum = -2147483648D;
  291. this.uitb_xh.MinimumSize = new System.Drawing.Size(1, 1);
  292. this.uitb_xh.Name = "uitb_xh";
  293. this.uitb_xh.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  294. this.uitb_xh.Size = new System.Drawing.Size(150, 29);
  295. this.uitb_xh.Style = Sunny.UI.UIStyle.Gray;
  296. this.uitb_xh.TabIndex = 35;
  297. this.uitb_xh.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  298. //
  299. // uiLabel16
  300. //
  301. this.uiLabel16.Enabled = false;
  302. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 12F);
  303. this.uiLabel16.Location = new System.Drawing.Point(12, 95);
  304. this.uiLabel16.Name = "uiLabel16";
  305. this.uiLabel16.Size = new System.Drawing.Size(92, 23);
  306. this.uiLabel16.Style = Sunny.UI.UIStyle.Gray;
  307. this.uiLabel16.TabIndex = 41;
  308. this.uiLabel16.Text = "型号:";
  309. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  310. //
  311. // uitb_bz
  312. //
  313. this.uitb_bz.Cursor = System.Windows.Forms.Cursors.IBeam;
  314. this.uitb_bz.Enabled = false;
  315. this.uitb_bz.FillColor = System.Drawing.Color.White;
  316. this.uitb_bz.Font = new System.Drawing.Font("微软雅黑", 12F);
  317. this.uitb_bz.Location = new System.Drawing.Point(117, 439);
  318. this.uitb_bz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  319. this.uitb_bz.Maximum = 2147483647D;
  320. this.uitb_bz.MaxLength = 50;
  321. this.uitb_bz.Minimum = -2147483648D;
  322. this.uitb_bz.MinimumSize = new System.Drawing.Size(1, 1);
  323. this.uitb_bz.Name = "uitb_bz";
  324. this.uitb_bz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  325. this.uitb_bz.Size = new System.Drawing.Size(419, 29);
  326. this.uitb_bz.Style = Sunny.UI.UIStyle.Gray;
  327. this.uitb_bz.TabIndex = 59;
  328. this.uitb_bz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  329. //
  330. // uiLabel13
  331. //
  332. this.uiLabel13.Enabled = false;
  333. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F);
  334. this.uiLabel13.Location = new System.Drawing.Point(12, 439);
  335. this.uiLabel13.Name = "uiLabel13";
  336. this.uiLabel13.Size = new System.Drawing.Size(92, 23);
  337. this.uiLabel13.Style = Sunny.UI.UIStyle.Gray;
  338. this.uiLabel13.TabIndex = 62;
  339. this.uiLabel13.Text = "备注:";
  340. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  341. //
  342. // uidp_msrq
  343. //
  344. this.uidp_msrq.Enabled = false;
  345. this.uidp_msrq.FillColor = System.Drawing.Color.White;
  346. this.uidp_msrq.Font = new System.Drawing.Font("微软雅黑", 12F);
  347. this.uidp_msrq.Location = new System.Drawing.Point(386, 268);
  348. this.uidp_msrq.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  349. this.uidp_msrq.MaxLength = 10;
  350. this.uidp_msrq.MinimumSize = new System.Drawing.Size(63, 0);
  351. this.uidp_msrq.Name = "uidp_msrq";
  352. this.uidp_msrq.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  353. this.uidp_msrq.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  354. this.uidp_msrq.Size = new System.Drawing.Size(150, 29);
  355. this.uidp_msrq.Style = Sunny.UI.UIStyle.Gray;
  356. this.uidp_msrq.SymbolDropDown = 61555;
  357. this.uidp_msrq.SymbolNormal = 61555;
  358. this.uidp_msrq.TabIndex = 53;
  359. this.uidp_msrq.Text = "2020-01-01";
  360. this.uidp_msrq.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  361. this.uidp_msrq.Value = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
  362. //
  363. // uiLabel11
  364. //
  365. this.uiLabel11.Enabled = false;
  366. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 12F);
  367. this.uiLabel11.Location = new System.Drawing.Point(280, 224);
  368. this.uiLabel11.Name = "uiLabel11";
  369. this.uiLabel11.Size = new System.Drawing.Size(92, 23);
  370. this.uiLabel11.Style = Sunny.UI.UIStyle.Gray;
  371. this.uiLabel11.TabIndex = 61;
  372. this.uiLabel11.Text = "埋深:";
  373. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  374. //
  375. // uitb_yl
  376. //
  377. this.uitb_yl.Cursor = System.Windows.Forms.Cursors.IBeam;
  378. this.uitb_yl.Enabled = false;
  379. this.uitb_yl.FillColor = System.Drawing.Color.White;
  380. this.uitb_yl.Font = new System.Drawing.Font("微软雅黑", 12F);
  381. this.uitb_yl.Location = new System.Drawing.Point(386, 182);
  382. this.uitb_yl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  383. this.uitb_yl.Maximum = 2147483647D;
  384. this.uitb_yl.MaxLength = 10;
  385. this.uitb_yl.Minimum = -2147483648D;
  386. this.uitb_yl.MinimumSize = new System.Drawing.Size(1, 1);
  387. this.uitb_yl.Name = "uitb_yl";
  388. this.uitb_yl.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  389. this.uitb_yl.Size = new System.Drawing.Size(150, 29);
  390. this.uitb_yl.Style = Sunny.UI.UIStyle.Gray;
  391. this.uitb_yl.TabIndex = 45;
  392. this.uitb_yl.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  393. //
  394. // uiLabel12
  395. //
  396. this.uiLabel12.Enabled = false;
  397. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F);
  398. this.uiLabel12.Location = new System.Drawing.Point(280, 181);
  399. this.uiLabel12.Name = "uiLabel12";
  400. this.uiLabel12.Size = new System.Drawing.Size(92, 23);
  401. this.uiLabel12.Style = Sunny.UI.UIStyle.Gray;
  402. this.uiLabel12.TabIndex = 60;
  403. this.uiLabel12.Text = "压力:";
  404. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  405. //
  406. // uitb_ms
  407. //
  408. this.uitb_ms.Cursor = System.Windows.Forms.Cursors.IBeam;
  409. this.uitb_ms.Enabled = false;
  410. this.uitb_ms.FillColor = System.Drawing.Color.White;
  411. this.uitb_ms.Font = new System.Drawing.Font("微软雅黑", 12F);
  412. this.uitb_ms.Location = new System.Drawing.Point(386, 225);
  413. this.uitb_ms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  414. this.uitb_ms.Maximum = 2147483647D;
  415. this.uitb_ms.Minimum = -2147483648D;
  416. this.uitb_ms.MinimumSize = new System.Drawing.Size(1, 1);
  417. this.uitb_ms.Name = "uitb_ms";
  418. this.uitb_ms.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  419. this.uitb_ms.Size = new System.Drawing.Size(150, 29);
  420. this.uitb_ms.Style = Sunny.UI.UIStyle.Gray;
  421. this.uitb_ms.TabIndex = 50;
  422. this.uitb_ms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  423. //
  424. // uiLabel9
  425. //
  426. this.uiLabel9.Enabled = false;
  427. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F);
  428. this.uiLabel9.Location = new System.Drawing.Point(12, 396);
  429. this.uiLabel9.Name = "uiLabel9";
  430. this.uiLabel9.Size = new System.Drawing.Size(92, 23);
  431. this.uiLabel9.Style = Sunny.UI.UIStyle.Gray;
  432. this.uiLabel9.TabIndex = 58;
  433. this.uiLabel9.Text = "探测单位:";
  434. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  435. //
  436. // uitb_qsdw
  437. //
  438. this.uitb_qsdw.Cursor = System.Windows.Forms.Cursors.IBeam;
  439. this.uitb_qsdw.Enabled = false;
  440. this.uitb_qsdw.FillColor = System.Drawing.Color.White;
  441. this.uitb_qsdw.Font = new System.Drawing.Font("微软雅黑", 12F);
  442. this.uitb_qsdw.Location = new System.Drawing.Point(117, 353);
  443. this.uitb_qsdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  444. this.uitb_qsdw.Maximum = 2147483647D;
  445. this.uitb_qsdw.MaxLength = 20;
  446. this.uitb_qsdw.Minimum = -2147483648D;
  447. this.uitb_qsdw.MinimumSize = new System.Drawing.Size(1, 1);
  448. this.uitb_qsdw.Name = "uitb_qsdw";
  449. this.uitb_qsdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  450. this.uitb_qsdw.Size = new System.Drawing.Size(419, 29);
  451. this.uitb_qsdw.Style = Sunny.UI.UIStyle.Gray;
  452. this.uitb_qsdw.TabIndex = 55;
  453. this.uitb_qsdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  454. //
  455. // uiLabel10
  456. //
  457. this.uiLabel10.Enabled = false;
  458. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F);
  459. this.uiLabel10.Location = new System.Drawing.Point(12, 353);
  460. this.uiLabel10.Name = "uiLabel10";
  461. this.uiLabel10.Size = new System.Drawing.Size(92, 23);
  462. this.uiLabel10.Style = Sunny.UI.UIStyle.Gray;
  463. this.uiLabel10.TabIndex = 56;
  464. this.uiLabel10.Text = "权属单位:";
  465. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  466. //
  467. // uitb_tcdw
  468. //
  469. this.uitb_tcdw.Cursor = System.Windows.Forms.Cursors.IBeam;
  470. this.uitb_tcdw.Enabled = false;
  471. this.uitb_tcdw.FillColor = System.Drawing.Color.White;
  472. this.uitb_tcdw.Font = new System.Drawing.Font("微软雅黑", 12F);
  473. this.uitb_tcdw.Location = new System.Drawing.Point(117, 396);
  474. this.uitb_tcdw.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  475. this.uitb_tcdw.Maximum = 2147483647D;
  476. this.uitb_tcdw.MaxLength = 20;
  477. this.uitb_tcdw.Minimum = -2147483648D;
  478. this.uitb_tcdw.MinimumSize = new System.Drawing.Size(1, 1);
  479. this.uitb_tcdw.Name = "uitb_tcdw";
  480. this.uitb_tcdw.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  481. this.uitb_tcdw.Size = new System.Drawing.Size(419, 29);
  482. this.uitb_tcdw.Style = Sunny.UI.UIStyle.Gray;
  483. this.uitb_tcdw.TabIndex = 57;
  484. this.uitb_tcdw.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  485. //
  486. // uitb_gj
  487. //
  488. this.uitb_gj.Cursor = System.Windows.Forms.Cursors.IBeam;
  489. this.uitb_gj.Enabled = false;
  490. this.uitb_gj.FillColor = System.Drawing.Color.White;
  491. this.uitb_gj.Font = new System.Drawing.Font("微软雅黑", 12F);
  492. this.uitb_gj.Location = new System.Drawing.Point(386, 139);
  493. this.uitb_gj.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  494. this.uitb_gj.Maximum = 2147483647D;
  495. this.uitb_gj.MaxLength = 10;
  496. this.uitb_gj.Minimum = -2147483648D;
  497. this.uitb_gj.MinimumSize = new System.Drawing.Size(1, 1);
  498. this.uitb_gj.Name = "uitb_gj";
  499. this.uitb_gj.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  500. this.uitb_gj.Size = new System.Drawing.Size(150, 29);
  501. this.uitb_gj.Style = Sunny.UI.UIStyle.Gray;
  502. this.uitb_gj.TabIndex = 43;
  503. this.uitb_gj.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  504. //
  505. // uiLabel5
  506. //
  507. this.uiLabel5.Enabled = false;
  508. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F);
  509. this.uiLabel5.Location = new System.Drawing.Point(280, 267);
  510. this.uiLabel5.Name = "uiLabel5";
  511. this.uiLabel5.Size = new System.Drawing.Size(92, 23);
  512. this.uiLabel5.Style = Sunny.UI.UIStyle.Gray;
  513. this.uiLabel5.TabIndex = 52;
  514. this.uiLabel5.Text = "埋设日期:";
  515. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  516. //
  517. // uiLabel4
  518. //
  519. this.uiLabel4.Enabled = false;
  520. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F);
  521. this.uiLabel4.Location = new System.Drawing.Point(280, 138);
  522. this.uiLabel4.Name = "uiLabel4";
  523. this.uiLabel4.Size = new System.Drawing.Size(92, 23);
  524. this.uiLabel4.Style = Sunny.UI.UIStyle.Gray;
  525. this.uiLabel4.TabIndex = 38;
  526. this.uiLabel4.Text = "管径:";
  527. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  528. //
  529. // uitb_msfs
  530. //
  531. this.uitb_msfs.Cursor = System.Windows.Forms.Cursors.IBeam;
  532. this.uitb_msfs.Enabled = false;
  533. this.uitb_msfs.FillColor = System.Drawing.Color.White;
  534. this.uitb_msfs.Font = new System.Drawing.Font("微软雅黑", 12F);
  535. this.uitb_msfs.Location = new System.Drawing.Point(117, 267);
  536. this.uitb_msfs.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  537. this.uitb_msfs.Maximum = 2147483647D;
  538. this.uitb_msfs.MaxLength = 10;
  539. this.uitb_msfs.Minimum = -2147483648D;
  540. this.uitb_msfs.MinimumSize = new System.Drawing.Size(1, 1);
  541. this.uitb_msfs.Name = "uitb_msfs";
  542. this.uitb_msfs.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  543. this.uitb_msfs.Size = new System.Drawing.Size(150, 29);
  544. this.uitb_msfs.Style = Sunny.UI.UIStyle.Gray;
  545. this.uitb_msfs.TabIndex = 51;
  546. this.uitb_msfs.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  547. //
  548. // uitb_cz
  549. //
  550. this.uitb_cz.Cursor = System.Windows.Forms.Cursors.IBeam;
  551. this.uitb_cz.Enabled = false;
  552. this.uitb_cz.FillColor = System.Drawing.Color.White;
  553. this.uitb_cz.Font = new System.Drawing.Font("微软雅黑", 12F);
  554. this.uitb_cz.Location = new System.Drawing.Point(117, 138);
  555. this.uitb_cz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  556. this.uitb_cz.Maximum = 2147483647D;
  557. this.uitb_cz.MaxLength = 10;
  558. this.uitb_cz.Minimum = -2147483648D;
  559. this.uitb_cz.MinimumSize = new System.Drawing.Size(1, 1);
  560. this.uitb_cz.Name = "uitb_cz";
  561. this.uitb_cz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  562. this.uitb_cz.Size = new System.Drawing.Size(150, 29);
  563. this.uitb_cz.Style = Sunny.UI.UIStyle.Gray;
  564. this.uitb_cz.TabIndex = 40;
  565. this.uitb_cz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  566. //
  567. // uiLabel6
  568. //
  569. this.uiLabel6.Enabled = false;
  570. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F);
  571. this.uiLabel6.Location = new System.Drawing.Point(12, 267);
  572. this.uiLabel6.Name = "uiLabel6";
  573. this.uiLabel6.Size = new System.Drawing.Size(92, 23);
  574. this.uiLabel6.Style = Sunny.UI.UIStyle.Gray;
  575. this.uiLabel6.TabIndex = 49;
  576. this.uiLabel6.Text = "埋设方式:";
  577. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  578. //
  579. // uiLabel3
  580. //
  581. this.uiLabel3.Enabled = false;
  582. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F);
  583. this.uiLabel3.Location = new System.Drawing.Point(12, 138);
  584. this.uiLabel3.Name = "uiLabel3";
  585. this.uiLabel3.Size = new System.Drawing.Size(92, 23);
  586. this.uiLabel3.Style = Sunny.UI.UIStyle.Gray;
  587. this.uiLabel3.TabIndex = 33;
  588. this.uiLabel3.Text = "材质:";
  589. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  590. //
  591. // uitb_dzms
  592. //
  593. this.uitb_dzms.Cursor = System.Windows.Forms.Cursors.IBeam;
  594. this.uitb_dzms.Enabled = false;
  595. this.uitb_dzms.FillColor = System.Drawing.Color.White;
  596. this.uitb_dzms.Font = new System.Drawing.Font("微软雅黑", 12F);
  597. this.uitb_dzms.Location = new System.Drawing.Point(117, 310);
  598. this.uitb_dzms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  599. this.uitb_dzms.Maximum = 2147483647D;
  600. this.uitb_dzms.MaxLength = 20;
  601. this.uitb_dzms.Minimum = -2147483648D;
  602. this.uitb_dzms.MinimumSize = new System.Drawing.Size(1, 1);
  603. this.uitb_dzms.Name = "uitb_dzms";
  604. this.uitb_dzms.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  605. this.uitb_dzms.Size = new System.Drawing.Size(419, 29);
  606. this.uitb_dzms.Style = Sunny.UI.UIStyle.Gray;
  607. this.uitb_dzms.TabIndex = 54;
  608. this.uitb_dzms.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  609. //
  610. // uitb_fldm
  611. //
  612. this.uitb_fldm.Cursor = System.Windows.Forms.Cursors.IBeam;
  613. this.uitb_fldm.Enabled = false;
  614. this.uitb_fldm.FillColor = System.Drawing.Color.White;
  615. this.uitb_fldm.Font = new System.Drawing.Font("微软雅黑", 12F);
  616. this.uitb_fldm.Location = new System.Drawing.Point(386, 10);
  617. this.uitb_fldm.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  618. this.uitb_fldm.Maximum = 2147483647D;
  619. this.uitb_fldm.Minimum = -2147483648D;
  620. this.uitb_fldm.MinimumSize = new System.Drawing.Size(1, 1);
  621. this.uitb_fldm.Name = "uitb_fldm";
  622. this.uitb_fldm.ReadOnly = true;
  623. this.uitb_fldm.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  624. this.uitb_fldm.Size = new System.Drawing.Size(150, 29);
  625. this.uitb_fldm.Style = Sunny.UI.UIStyle.Gray;
  626. this.uitb_fldm.TabIndex = 31;
  627. this.uitb_fldm.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  628. //
  629. // uitb_tz
  630. //
  631. this.uitb_tz.Cursor = System.Windows.Forms.Cursors.IBeam;
  632. this.uitb_tz.Enabled = false;
  633. this.uitb_tz.FillColor = System.Drawing.Color.White;
  634. this.uitb_tz.Font = new System.Drawing.Font("微软雅黑", 12F);
  635. this.uitb_tz.Location = new System.Drawing.Point(386, 53);
  636. this.uitb_tz.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  637. this.uitb_tz.Maximum = 2147483647D;
  638. this.uitb_tz.MaxLength = 10;
  639. this.uitb_tz.Minimum = -2147483648D;
  640. this.uitb_tz.MinimumSize = new System.Drawing.Size(1, 1);
  641. this.uitb_tz.Name = "uitb_tz";
  642. this.uitb_tz.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  643. this.uitb_tz.Size = new System.Drawing.Size(150, 29);
  644. this.uitb_tz.Style = Sunny.UI.UIStyle.Gray;
  645. this.uitb_tz.TabIndex = 34;
  646. this.uitb_tz.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  647. //
  648. // uiLabel7
  649. //
  650. this.uiLabel7.Enabled = false;
  651. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F);
  652. this.uiLabel7.Location = new System.Drawing.Point(12, 310);
  653. this.uiLabel7.Name = "uiLabel7";
  654. this.uiLabel7.Size = new System.Drawing.Size(92, 23);
  655. this.uiLabel7.Style = Sunny.UI.UIStyle.Gray;
  656. this.uiLabel7.TabIndex = 46;
  657. this.uiLabel7.Text = "地址描述:";
  658. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  659. //
  660. // uitb_bsm
  661. //
  662. this.uitb_bsm.Cursor = System.Windows.Forms.Cursors.IBeam;
  663. this.uitb_bsm.Enabled = false;
  664. this.uitb_bsm.FillColor = System.Drawing.Color.White;
  665. this.uitb_bsm.Font = new System.Drawing.Font("微软雅黑", 12F);
  666. this.uitb_bsm.Location = new System.Drawing.Point(117, 9);
  667. this.uitb_bsm.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  668. this.uitb_bsm.Maximum = 2147483647D;
  669. this.uitb_bsm.Minimum = -2147483648D;
  670. this.uitb_bsm.MinimumSize = new System.Drawing.Size(1, 1);
  671. this.uitb_bsm.Name = "uitb_bsm";
  672. this.uitb_bsm.ReadOnly = true;
  673. this.uitb_bsm.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  674. this.uitb_bsm.Size = new System.Drawing.Size(150, 29);
  675. this.uitb_bsm.Style = Sunny.UI.UIStyle.Gray;
  676. this.uitb_bsm.TabIndex = 29;
  677. this.uitb_bsm.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  678. //
  679. // uiLabel8
  680. //
  681. this.uiLabel8.Enabled = false;
  682. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F);
  683. this.uiLabel8.Location = new System.Drawing.Point(280, 52);
  684. this.uiLabel8.Name = "uiLabel8";
  685. this.uiLabel8.Size = new System.Drawing.Size(92, 23);
  686. this.uiLabel8.Style = Sunny.UI.UIStyle.Gray;
  687. this.uiLabel8.TabIndex = 42;
  688. this.uiLabel8.Text = "特征:";
  689. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  690. //
  691. // uiLabel2
  692. //
  693. this.uiLabel2.Enabled = false;
  694. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F);
  695. this.uiLabel2.Location = new System.Drawing.Point(280, 9);
  696. this.uiLabel2.Name = "uiLabel2";
  697. this.uiLabel2.Size = new System.Drawing.Size(92, 23);
  698. this.uiLabel2.Style = Sunny.UI.UIStyle.Gray;
  699. this.uiLabel2.TabIndex = 30;
  700. this.uiLabel2.Text = "分类代码:";
  701. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  702. //
  703. // uiLabel1
  704. //
  705. this.uiLabel1.Enabled = false;
  706. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F);
  707. this.uiLabel1.Location = new System.Drawing.Point(12, 9);
  708. this.uiLabel1.Name = "uiLabel1";
  709. this.uiLabel1.Size = new System.Drawing.Size(92, 23);
  710. this.uiLabel1.Style = Sunny.UI.UIStyle.Gray;
  711. this.uiLabel1.TabIndex = 28;
  712. this.uiLabel1.Text = "标识码:";
  713. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  714. //
  715. // GuanDianShanChu
  716. //
  717. this.Controls.Add(this.uiLabel18);
  718. this.Controls.Add(this.uitb_dmgc);
  719. this.Controls.Add(this.uitb_kj);
  720. this.Controls.Add(this.uitb_gg);
  721. this.Controls.Add(this.uiLabel17);
  722. this.Controls.Add(this.uitb_fsw);
  723. this.Controls.Add(this.uiLabel15);
  724. this.Controls.Add(this.uiLabel14);
  725. this.Controls.Add(this.uitb_xh);
  726. this.Controls.Add(this.uiLabel16);
  727. this.Controls.Add(this.uitb_bz);
  728. this.Controls.Add(this.uiLabel13);
  729. this.Controls.Add(this.uidp_msrq);
  730. this.Controls.Add(this.uiLabel11);
  731. this.Controls.Add(this.uitb_yl);
  732. this.Controls.Add(this.uiLabel12);
  733. this.Controls.Add(this.uitb_ms);
  734. this.Controls.Add(this.uiLabel9);
  735. this.Controls.Add(this.uitb_qsdw);
  736. this.Controls.Add(this.uiLabel10);
  737. this.Controls.Add(this.uitb_tcdw);
  738. this.Controls.Add(this.uitb_gj);
  739. this.Controls.Add(this.uiLabel5);
  740. this.Controls.Add(this.uiLabel4);
  741. this.Controls.Add(this.uitb_msfs);
  742. this.Controls.Add(this.uitb_cz);
  743. this.Controls.Add(this.uiLabel6);
  744. this.Controls.Add(this.uiLabel3);
  745. this.Controls.Add(this.uitb_dzms);
  746. this.Controls.Add(this.uitb_fldm);
  747. this.Controls.Add(this.uitb_tz);
  748. this.Controls.Add(this.uiLabel7);
  749. this.Controls.Add(this.uitb_bsm);
  750. this.Controls.Add(this.uiLabel8);
  751. this.Controls.Add(this.uiLabel2);
  752. this.Controls.Add(this.uiLabel1);
  753. this.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244)))));
  754. this.Name = "GuanDianShanChu";
  755. this.RectColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  756. this.Size = new System.Drawing.Size(560, 500);
  757. this.Style = Sunny.UI.UIStyle.Gray;
  758. this.ResumeLayout(false);
  759. }
  760. }
  761. }