FlightEditor.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. namespace DataSimulation.Forms.EditForms
  2. {
  3. partial class FlightEditor
  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.components = new System.ComponentModel.Container();
  29. DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions2 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
  30. DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
  31. DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
  32. DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
  33. DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
  34. this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
  35. this.mapControl = new DevExpress.XtraMap.MapControl();
  36. this.btnSave = new DevExpress.XtraEditors.SimpleButton();
  37. this.txtSpeed = new DevExpress.XtraEditors.ButtonEdit();
  38. this.txtFlightName = new DevExpress.XtraEditors.TextEdit();
  39. this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
  40. this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
  41. this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
  42. this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
  43. this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
  44. this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
  45. this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
  46. this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
  47. this.dxErrorProvider = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
  48. this.btnDraw = new DevExpress.XtraEditors.SimpleButton();
  49. this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
  50. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
  51. this.layoutControl1.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.mapControl)).BeginInit();
  53. ((System.ComponentModel.ISupportInitialize)(this.txtSpeed.Properties)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.txtFlightName.Properties)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
  58. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
  60. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
  61. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
  62. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
  63. ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).BeginInit();
  64. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
  65. this.SuspendLayout();
  66. //
  67. // layoutControl1
  68. //
  69. this.layoutControl1.Controls.Add(this.btnDraw);
  70. this.layoutControl1.Controls.Add(this.mapControl);
  71. this.layoutControl1.Controls.Add(this.btnSave);
  72. this.layoutControl1.Controls.Add(this.txtSpeed);
  73. this.layoutControl1.Controls.Add(this.txtFlightName);
  74. this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  75. this.layoutControl1.Location = new System.Drawing.Point(0, 0);
  76. this.layoutControl1.Name = "layoutControl1";
  77. this.layoutControl1.Root = this.Root;
  78. this.layoutControl1.Size = new System.Drawing.Size(1189, 509);
  79. this.layoutControl1.TabIndex = 0;
  80. this.layoutControl1.Text = "layoutControl1";
  81. //
  82. // mapControl
  83. //
  84. this.mapControl.Location = new System.Drawing.Point(304, 12);
  85. this.mapControl.Name = "mapControl";
  86. this.mapControl.Size = new System.Drawing.Size(873, 485);
  87. this.mapControl.TabIndex = 16;
  88. //
  89. // btnSave
  90. //
  91. this.btnSave.Location = new System.Drawing.Point(218, 475);
  92. this.btnSave.Name = "btnSave";
  93. this.btnSave.Size = new System.Drawing.Size(72, 22);
  94. this.btnSave.StyleController = this.layoutControl1;
  95. this.btnSave.TabIndex = 15;
  96. this.btnSave.Text = "保存";
  97. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  98. //
  99. // txtSpeed
  100. //
  101. this.txtSpeed.Location = new System.Drawing.Point(12, 70);
  102. this.txtSpeed.Name = "txtSpeed";
  103. this.txtSpeed.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
  104. new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "m/s", -1, false, true, false, editorButtonImageOptions2, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, serializableAppearanceObject6, serializableAppearanceObject7, serializableAppearanceObject8, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)});
  105. this.txtSpeed.Properties.MaskSettings.Set("MaskManagerType", typeof(DevExpress.Data.Mask.NumericMaskManager));
  106. this.txtSpeed.Properties.MaskSettings.Set("mask", "f3");
  107. this.txtSpeed.Properties.MaxLength = 10;
  108. this.txtSpeed.Size = new System.Drawing.Size(278, 23);
  109. this.txtSpeed.StyleController = this.layoutControl1;
  110. this.txtSpeed.TabIndex = 13;
  111. //
  112. // txtFlightName
  113. //
  114. this.txtFlightName.Location = new System.Drawing.Point(12, 29);
  115. this.txtFlightName.Name = "txtFlightName";
  116. this.txtFlightName.Properties.MaxLength = 12;
  117. this.txtFlightName.Size = new System.Drawing.Size(278, 20);
  118. this.txtFlightName.StyleController = this.layoutControl1;
  119. this.txtFlightName.TabIndex = 4;
  120. //
  121. // Root
  122. //
  123. this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
  124. this.Root.GroupBordersVisible = false;
  125. this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
  126. this.layoutControlItem1,
  127. this.layoutControlItem13,
  128. this.layoutControlItem10,
  129. this.splitterItem1,
  130. this.emptySpaceItem1,
  131. this.emptySpaceItem2,
  132. this.layoutControlItem12,
  133. this.layoutControlItem2});
  134. this.Root.Name = "Root";
  135. this.Root.Size = new System.Drawing.Size(1189, 509);
  136. this.Root.TextVisible = false;
  137. //
  138. // layoutControlItem1
  139. //
  140. this.layoutControlItem1.Control = this.txtFlightName;
  141. this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
  142. this.layoutControlItem1.Name = "layoutControlItem1";
  143. this.layoutControlItem1.Size = new System.Drawing.Size(282, 41);
  144. this.layoutControlItem1.Text = "航迹名称";
  145. this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Top;
  146. this.layoutControlItem1.TextSize = new System.Drawing.Size(48, 14);
  147. //
  148. // layoutControlItem13
  149. //
  150. this.layoutControlItem13.Control = this.mapControl;
  151. this.layoutControlItem13.Location = new System.Drawing.Point(292, 0);
  152. this.layoutControlItem13.Name = "layoutControlItem13";
  153. this.layoutControlItem13.Size = new System.Drawing.Size(877, 489);
  154. this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
  155. this.layoutControlItem13.TextVisible = false;
  156. //
  157. // layoutControlItem10
  158. //
  159. this.layoutControlItem10.Control = this.txtSpeed;
  160. this.layoutControlItem10.Location = new System.Drawing.Point(0, 41);
  161. this.layoutControlItem10.Name = "layoutControlItem10";
  162. this.layoutControlItem10.Size = new System.Drawing.Size(282, 44);
  163. this.layoutControlItem10.Text = "速度";
  164. this.layoutControlItem10.TextLocation = DevExpress.Utils.Locations.Top;
  165. this.layoutControlItem10.TextSize = new System.Drawing.Size(48, 14);
  166. //
  167. // splitterItem1
  168. //
  169. this.splitterItem1.AllowHotTrack = true;
  170. this.splitterItem1.Location = new System.Drawing.Point(282, 0);
  171. this.splitterItem1.Name = "splitterItem1";
  172. this.splitterItem1.Size = new System.Drawing.Size(10, 489);
  173. //
  174. // emptySpaceItem1
  175. //
  176. this.emptySpaceItem1.AllowHotTrack = false;
  177. this.emptySpaceItem1.Location = new System.Drawing.Point(0, 463);
  178. this.emptySpaceItem1.Name = "emptySpaceItem1";
  179. this.emptySpaceItem1.Size = new System.Drawing.Size(142, 26);
  180. this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
  181. //
  182. // emptySpaceItem2
  183. //
  184. this.emptySpaceItem2.AllowHotTrack = false;
  185. this.emptySpaceItem2.Location = new System.Drawing.Point(0, 85);
  186. this.emptySpaceItem2.Name = "emptySpaceItem2";
  187. this.emptySpaceItem2.Size = new System.Drawing.Size(282, 378);
  188. this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
  189. //
  190. // layoutControlItem12
  191. //
  192. this.layoutControlItem12.Control = this.btnSave;
  193. this.layoutControlItem12.Location = new System.Drawing.Point(206, 463);
  194. this.layoutControlItem12.MaxSize = new System.Drawing.Size(76, 26);
  195. this.layoutControlItem12.MinSize = new System.Drawing.Size(76, 26);
  196. this.layoutControlItem12.Name = "layoutControlItem12";
  197. this.layoutControlItem12.Size = new System.Drawing.Size(76, 26);
  198. this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
  199. this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
  200. this.layoutControlItem12.TextVisible = false;
  201. //
  202. // dxErrorProvider
  203. //
  204. this.dxErrorProvider.ContainerControl = this;
  205. //
  206. // btnDraw
  207. //
  208. this.btnDraw.Location = new System.Drawing.Point(154, 475);
  209. this.btnDraw.Name = "btnDraw";
  210. this.btnDraw.Size = new System.Drawing.Size(60, 22);
  211. this.btnDraw.StyleController = this.layoutControl1;
  212. this.btnDraw.TabIndex = 17;
  213. this.btnDraw.Text = "绘制航迹";
  214. this.btnDraw.Click += new System.EventHandler(this.btnFlight_Click);
  215. //
  216. // layoutControlItem2
  217. //
  218. this.layoutControlItem2.Control = this.btnDraw;
  219. this.layoutControlItem2.Location = new System.Drawing.Point(142, 463);
  220. this.layoutControlItem2.Name = "layoutControlItem2";
  221. this.layoutControlItem2.Size = new System.Drawing.Size(64, 26);
  222. this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
  223. this.layoutControlItem2.TextVisible = false;
  224. //
  225. // FlightEditor
  226. //
  227. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  228. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  229. this.ClientSize = new System.Drawing.Size(1189, 509);
  230. this.Controls.Add(this.layoutControl1);
  231. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  232. this.Name = "FlightEditor";
  233. this.Text = "FlightEditor";
  234. this.Load += new System.EventHandler(this.Editor_Load);
  235. ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
  236. this.layoutControl1.ResumeLayout(false);
  237. ((System.ComponentModel.ISupportInitialize)(this.mapControl)).EndInit();
  238. ((System.ComponentModel.ISupportInitialize)(this.txtSpeed.Properties)).EndInit();
  239. ((System.ComponentModel.ISupportInitialize)(this.txtFlightName.Properties)).EndInit();
  240. ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
  241. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
  242. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
  243. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
  244. ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
  245. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
  246. ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
  247. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
  248. ((System.ComponentModel.ISupportInitialize)(this.dxErrorProvider)).EndInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
  250. this.ResumeLayout(false);
  251. }
  252. #endregion
  253. private DevExpress.XtraLayout.LayoutControl layoutControl1;
  254. private DevExpress.XtraLayout.LayoutControlGroup Root;
  255. private DevExpress.XtraEditors.TextEdit txtFlightName;
  256. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1;
  257. private DevExpress.XtraEditors.ButtonEdit txtSpeed;
  258. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem10;
  259. private DevExpress.XtraEditors.SimpleButton btnSave;
  260. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem12;
  261. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem2;
  262. private DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider dxErrorProvider;
  263. private DevExpress.XtraMap.MapControl mapControl;
  264. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem13;
  265. private DevExpress.XtraLayout.SplitterItem splitterItem1;
  266. private DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem1;
  267. private DevExpress.XtraEditors.SimpleButton btnDraw;
  268. private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2;
  269. }
  270. }