DrawPointForm.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. namespace Ips.Sps.Maps
  2. {
  3. partial class DrawPointForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
  29. this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
  30. this.txtName = new DevExpress.XtraEditors.TextEdit();
  31. this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
  32. this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
  33. this.txtLon = new DevExpress.XtraEditors.TextEdit();
  34. this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
  35. this.txtLat = new DevExpress.XtraEditors.TextEdit();
  36. this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
  37. this.btnOk = new DevExpress.XtraEditors.SimpleButton();
  38. this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
  39. this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
  40. this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
  41. this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
  42. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
  43. this.layoutControl1.SuspendLayout();
  44. ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
  45. ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
  48. ((System.ComponentModel.ISupportInitialize)(this.txtLon.Properties)).BeginInit();
  49. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
  50. ((System.ComponentModel.ISupportInitialize)(this.txtLat.Properties)).BeginInit();
  51. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
  52. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
  53. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
  55. this.SuspendLayout();
  56. //
  57. // layoutControl1
  58. //
  59. this.layoutControl1.Controls.Add(this.btnCancel);
  60. this.layoutControl1.Controls.Add(this.btnOk);
  61. this.layoutControl1.Controls.Add(this.txtLat);
  62. this.layoutControl1.Controls.Add(this.txtLon);
  63. this.layoutControl1.Controls.Add(this.txtName);
  64. this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  65. this.layoutControl1.Location = new System.Drawing.Point(0, 0);
  66. this.layoutControl1.Name = "layoutControl1";
  67. this.layoutControl1.Root = this.Root;
  68. this.layoutControl1.Size = new System.Drawing.Size(382, 105);
  69. this.layoutControl1.TabIndex = 0;
  70. this.layoutControl1.Text = "layoutControl1";
  71. //
  72. // Root
  73. //
  74. this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
  75. this.Root.GroupBordersVisible = false;
  76. this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  77. this.layoutControlItem1,
  78. this.emptySpaceItem1,
  79. this.layoutControlItem2,
  80. this.layoutControlItem3,
  81. this.layoutControlItem4,
  82. this.layoutControlItem5,
  83. this.emptySpaceItem2});
  84. this.Root.Name = "Root";
  85. this.Root.Size = new System.Drawing.Size(382, 105);
  86. this.Root.TextVisible = false;
  87. //
  88. // txtName
  89. //
  90. this.txtName.Location = new System.Drawing.Point(48, 12);
  91. this.txtName.Name = "txtName";
  92. this.txtName.Size = new System.Drawing.Size(322, 20);
  93. this.txtName.StyleController = this.layoutControl1;
  94. this.txtName.TabIndex = 0;
  95. //
  96. // layoutControlItem1
  97. //
  98. this.layoutControlItem1.Control = this.txtName;
  99. this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
  100. this.layoutControlItem1.Name = "layoutControlItem1";
  101. this.layoutControlItem1.Size = new System.Drawing.Size(362, 24);
  102. this.layoutControlItem1.Text = "名称";
  103. this.layoutControlItem1.TextSize = new System.Drawing.Size(24, 14);
  104. //
  105. // emptySpaceItem1
  106. //
  107. this.emptySpaceItem1.AllowHotTrack = false;
  108. this.emptySpaceItem1.Location = new System.Drawing.Point(0, 48);
  109. this.emptySpaceItem1.Name = "emptySpaceItem1";
  110. this.emptySpaceItem1.Size = new System.Drawing.Size(362, 11);
  111. this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
  112. //
  113. // txtLon
  114. //
  115. this.txtLon.Location = new System.Drawing.Point(48, 36);
  116. this.txtLon.Name = "txtLon";
  117. this.txtLon.Size = new System.Drawing.Size(141, 20);
  118. this.txtLon.StyleController = this.layoutControl1;
  119. this.txtLon.TabIndex = 2;
  120. //
  121. // layoutControlItem2
  122. //
  123. this.layoutControlItem2.Control = this.txtLon;
  124. this.layoutControlItem2.Location = new System.Drawing.Point(0, 24);
  125. this.layoutControlItem2.Name = "layoutControlItem2";
  126. this.layoutControlItem2.Size = new System.Drawing.Size(181, 24);
  127. this.layoutControlItem2.Text = "经度";
  128. this.layoutControlItem2.TextSize = new System.Drawing.Size(24, 14);
  129. //
  130. // txtLat
  131. //
  132. this.txtLat.Location = new System.Drawing.Point(229, 36);
  133. this.txtLat.Name = "txtLat";
  134. this.txtLat.Size = new System.Drawing.Size(141, 20);
  135. this.txtLat.StyleController = this.layoutControl1;
  136. this.txtLat.TabIndex = 3;
  137. //
  138. // layoutControlItem3
  139. //
  140. this.layoutControlItem3.Control = this.txtLat;
  141. this.layoutControlItem3.Location = new System.Drawing.Point(181, 24);
  142. this.layoutControlItem3.Name = "layoutControlItem3";
  143. this.layoutControlItem3.Size = new System.Drawing.Size(181, 24);
  144. this.layoutControlItem3.Text = "纬度";
  145. this.layoutControlItem3.TextSize = new System.Drawing.Size(24, 14);
  146. //
  147. // btnOk
  148. //
  149. this.btnOk.Location = new System.Drawing.Point(273, 71);
  150. this.btnOk.Name = "btnOk";
  151. this.btnOk.Size = new System.Drawing.Size(46, 22);
  152. this.btnOk.StyleController = this.layoutControl1;
  153. this.btnOk.TabIndex = 4;
  154. this.btnOk.Text = "确定";
  155. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  156. //
  157. // layoutControlItem4
  158. //
  159. this.layoutControlItem4.Control = this.btnOk;
  160. this.layoutControlItem4.Location = new System.Drawing.Point(261, 59);
  161. this.layoutControlItem4.MaxSize = new System.Drawing.Size(50, 26);
  162. this.layoutControlItem4.MinSize = new System.Drawing.Size(50, 26);
  163. this.layoutControlItem4.Name = "layoutControlItem4";
  164. this.layoutControlItem4.Size = new System.Drawing.Size(50, 26);
  165. this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  166. this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
  167. this.layoutControlItem4.TextVisible = false;
  168. //
  169. // btnCancel
  170. //
  171. this.btnCancel.Location = new System.Drawing.Point(323, 71);
  172. this.btnCancel.Name = "btnCancel";
  173. this.btnCancel.Size = new System.Drawing.Size(47, 22);
  174. this.btnCancel.StyleController = this.layoutControl1;
  175. this.btnCancel.TabIndex = 5;
  176. this.btnCancel.Text = "取消";
  177. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  178. //
  179. // layoutControlItem5
  180. //
  181. this.layoutControlItem5.Control = this.btnCancel;
  182. this.layoutControlItem5.Location = new System.Drawing.Point(311, 59);
  183. this.layoutControlItem5.MaxSize = new System.Drawing.Size(51, 26);
  184. this.layoutControlItem5.MinSize = new System.Drawing.Size(51, 26);
  185. this.layoutControlItem5.Name = "layoutControlItem5";
  186. this.layoutControlItem5.Size = new System.Drawing.Size(51, 26);
  187. this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  188. this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
  189. this.layoutControlItem5.TextVisible = false;
  190. //
  191. // emptySpaceItem2
  192. //
  193. this.emptySpaceItem2.AllowHotTrack = false;
  194. this.emptySpaceItem2.Location = new System.Drawing.Point(0, 59);
  195. this.emptySpaceItem2.Name = "emptySpaceItem2";
  196. this.emptySpaceItem2.Size = new System.Drawing.Size(261, 26);
  197. this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
  198. //
  199. // DrawPointForm
  200. //
  201. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  202. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  203. this.ClientSize = new System.Drawing.Size(382, 105);
  204. this.Controls.Add(this.layoutControl1);
  205. this.IconOptions.ShowIcon = false;
  206. this.Name = "DrawPointForm";
  207. this.ShowInTaskbar = false;
  208. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  209. this.Text = "标点信息";
  210. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
  211. this.layoutControl1.ResumeLayout(false);
  212. ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
  215. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
  216. ((System.ComponentModel.ISupportInitialize)(this.txtLon.Properties)).EndInit();
  217. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
  218. ((System.ComponentModel.ISupportInitialize)(this.txtLat.Properties)).EndInit();
  219. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
  220. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
  221. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
  222. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
  223. this.ResumeLayout(false);
  224. }
  225. #endregion
  226. private DevExpress.XtraLayout.LayoutControl layoutControl1;
  227. private DevExpress.XtraEditors.SimpleButton btnCancel;
  228. private DevExpress.XtraEditors.SimpleButton btnOk;
  229. private DevExpress.XtraEditors.TextEdit txtLat;
  230. private DevExpress.XtraEditors.TextEdit txtLon;
  231. private DevExpress.XtraEditors.TextEdit txtName;
  232. private DevExpress.XtraLayout.LayoutControlGroup Root;
  233. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1;
  234. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem1;
  235. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2;
  236. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem3;
  237. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem4;
  238. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem5;
  239. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem2;
  240. }
  241. }