MainForm.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. namespace DataSimulation.Forms
  2. {
  3. partial class MainForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  30. this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
  31. this.btnTask = new DevExpress.XtraBars.BarButtonItem();
  32. this.btnXl = new DevExpress.XtraBars.BarButtonItem();
  33. this.btnSat = new DevExpress.XtraBars.BarButtonItem();
  34. this.btnTx = new DevExpress.XtraBars.BarButtonItem();
  35. this.btnRef = new DevExpress.XtraBars.BarButtonItem();
  36. this.btnHistoryTask = new DevExpress.XtraBars.BarButtonItem();
  37. this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
  38. this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  39. this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
  40. this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
  41. this.documentManager1 = new DevExpress.XtraBars.Docking2010.DocumentManager(this.components);
  42. this.tabbedView1 = new DevExpress.XtraBars.Docking2010.Views.Tabbed.TabbedView(this.components);
  43. this.btnFlight = new DevExpress.XtraBars.BarButtonItem();
  44. ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
  45. ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.documentManager1)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.tabbedView1)).BeginInit();
  48. this.SuspendLayout();
  49. //
  50. // ribbon
  51. //
  52. this.ribbon.DrawGroupCaptions = DevExpress.Utils.DefaultBoolean.False;
  53. this.ribbon.ExpandCollapseItem.Id = 0;
  54. this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
  55. this.ribbon.ExpandCollapseItem,
  56. this.btnTask,
  57. this.btnXl,
  58. this.btnSat,
  59. this.btnTx,
  60. this.btnRef,
  61. this.btnHistoryTask,
  62. this.btnFlight});
  63. this.ribbon.Location = new System.Drawing.Point(0, 0);
  64. this.ribbon.MaxItemId = 8;
  65. this.ribbon.Name = "ribbon";
  66. this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
  67. this.ribbonPage1});
  68. this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.MacOffice;
  69. this.ribbon.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
  70. this.ribbon.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
  71. this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
  72. this.ribbon.ShowMoreCommandsButton = DevExpress.Utils.DefaultBoolean.False;
  73. this.ribbon.ShowPageHeadersInFormCaption = DevExpress.Utils.DefaultBoolean.False;
  74. this.ribbon.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Show;
  75. this.ribbon.ShowQatLocationSelector = false;
  76. this.ribbon.ShowToolbarCustomizeItem = false;
  77. this.ribbon.Size = new System.Drawing.Size(1219, 126);
  78. this.ribbon.Toolbar.ShowCustomizeItem = false;
  79. //
  80. // btnTask
  81. //
  82. this.btnTask.Caption = "任务管理";
  83. this.btnTask.Id = 1;
  84. this.btnTask.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnTask.ImageOptions.SvgImage")));
  85. this.btnTask.Name = "btnTask";
  86. this.btnTask.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  87. //
  88. // btnXl
  89. //
  90. this.btnXl.Caption = "星历管理";
  91. this.btnXl.Id = 2;
  92. this.btnXl.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnXl.ImageOptions.SvgImage")));
  93. this.btnXl.Name = "btnXl";
  94. this.btnXl.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  95. //
  96. // btnSat
  97. //
  98. this.btnSat.Caption = "卫星管理";
  99. this.btnSat.Id = 3;
  100. this.btnSat.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnSat.ImageOptions.SvgImage")));
  101. this.btnSat.Name = "btnSat";
  102. this.btnSat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  103. //
  104. // btnTx
  105. //
  106. this.btnTx.Caption = "天线管理";
  107. this.btnTx.Id = 4;
  108. this.btnTx.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnTx.ImageOptions.SvgImage")));
  109. this.btnTx.Name = "btnTx";
  110. this.btnTx.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  111. //
  112. // btnRef
  113. //
  114. this.btnRef.Caption = "参考站管理";
  115. this.btnRef.Id = 5;
  116. this.btnRef.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnRef.ImageOptions.SvgImage")));
  117. this.btnRef.Name = "btnRef";
  118. this.btnRef.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  119. //
  120. // btnHistoryTask
  121. //
  122. this.btnHistoryTask.Caption = "历史任务";
  123. this.btnHistoryTask.Id = 6;
  124. this.btnHistoryTask.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnHistoryTask.ImageOptions.SvgImage")));
  125. this.btnHistoryTask.Name = "btnHistoryTask";
  126. this.btnHistoryTask.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  127. //
  128. // ribbonPage1
  129. //
  130. this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
  131. this.ribbonPageGroup1,
  132. this.ribbonPageGroup2});
  133. this.ribbonPage1.Name = "ribbonPage1";
  134. this.ribbonPage1.Text = "主页";
  135. //
  136. // ribbonPageGroup1
  137. //
  138. this.ribbonPageGroup1.ItemLinks.Add(this.btnTask);
  139. this.ribbonPageGroup1.ItemLinks.Add(this.btnHistoryTask);
  140. this.ribbonPageGroup1.Name = "ribbonPageGroup1";
  141. //
  142. // ribbonPageGroup2
  143. //
  144. this.ribbonPageGroup2.ItemLinks.Add(this.btnXl);
  145. this.ribbonPageGroup2.ItemLinks.Add(this.btnSat);
  146. this.ribbonPageGroup2.ItemLinks.Add(this.btnTx);
  147. this.ribbonPageGroup2.ItemLinks.Add(this.btnRef);
  148. this.ribbonPageGroup2.ItemLinks.Add(this.btnFlight);
  149. this.ribbonPageGroup2.Name = "ribbonPageGroup2";
  150. this.ribbonPageGroup2.Text = "ribbonPageGroup2";
  151. //
  152. // dockManager1
  153. //
  154. this.dockManager1.Form = this;
  155. this.dockManager1.TopZIndexControls.AddRange(new string[] {
  156. "DevExpress.XtraBars.BarDockControl",
  157. "DevExpress.XtraBars.StandaloneBarDockControl",
  158. "System.Windows.Forms.MenuStrip",
  159. "System.Windows.Forms.StatusStrip",
  160. "System.Windows.Forms.StatusBar",
  161. "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
  162. "DevExpress.XtraBars.Ribbon.RibbonControl",
  163. "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
  164. "DevExpress.XtraBars.Navigation.TileNavPane",
  165. "DevExpress.XtraBars.TabFormControl",
  166. "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl",
  167. "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"});
  168. //
  169. // documentManager1
  170. //
  171. this.documentManager1.ContainerControl = this;
  172. this.documentManager1.MenuManager = this.ribbon;
  173. this.documentManager1.View = this.tabbedView1;
  174. this.documentManager1.ViewCollection.AddRange(new DevExpress.XtraBars.Docking2010.Views.BaseView[] {
  175. this.tabbedView1});
  176. //
  177. // btnFlight
  178. //
  179. this.btnFlight.Caption = "航迹管理";
  180. this.btnFlight.Id = 7;
  181. this.btnFlight.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnFlight.ImageOptions.SvgImage")));
  182. this.btnFlight.Name = "btnFlight";
  183. this.btnFlight.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_ItemClick);
  184. //
  185. // MainForm
  186. //
  187. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  188. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  189. this.ClientSize = new System.Drawing.Size(1219, 586);
  190. this.Controls.Add(this.ribbon);
  191. this.IconOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("MainForm.IconOptions.SvgImage")));
  192. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  193. this.Name = "MainForm";
  194. this.Ribbon = this.ribbon;
  195. this.Text = "数据仿真";
  196. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  197. ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
  198. ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
  199. ((System.ComponentModel.ISupportInitialize)(this.documentManager1)).EndInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.tabbedView1)).EndInit();
  201. this.ResumeLayout(false);
  202. this.PerformLayout();
  203. }
  204. #endregion
  205. private DevExpress.XtraBars.Ribbon.RibbonControl ribbon;
  206. private DevExpress.XtraBars.Ribbon.RibbonPage ribbonPage1;
  207. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup1;
  208. private DevExpress.XtraBars.BarButtonItem btnTask;
  209. private DevExpress.XtraBars.BarButtonItem btnXl;
  210. private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup2;
  211. private DevExpress.XtraBars.BarButtonItem btnSat;
  212. private DevExpress.XtraBars.BarButtonItem btnTx;
  213. private DevExpress.XtraBars.Docking.DockManager dockManager1;
  214. private DevExpress.XtraBars.Docking2010.DocumentManager documentManager1;
  215. private DevExpress.XtraBars.Docking2010.Views.Tabbed.TabbedView tabbedView1;
  216. private DevExpress.XtraBars.BarButtonItem btnRef;
  217. private DevExpress.XtraBars.BarButtonItem btnHistoryTask;
  218. private DevExpress.XtraBars.BarButtonItem btnFlight;
  219. }
  220. }