PesGridListCtrl.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. namespace Ips.Sps.TskResults.Peses
  2. {
  3. partial class PesGridListCtrl
  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 Component 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. components = new System.ComponentModel.Container();
  29. bsPesList = new DevExpress.Xpo.XPBindingSource(components);
  30. bmgMain = new DevExpress.XtraBars.BarManager(components);
  31. barDockControlTop = new DevExpress.XtraBars.BarDockControl();
  32. barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
  33. barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
  34. barDockControlRight = new DevExpress.XtraBars.BarDockControl();
  35. btnDrawDtoLine = new DevExpress.XtraBars.BarButtonItem();
  36. btnDrawDtoLineNoRef = new DevExpress.XtraBars.BarButtonItem();
  37. btnPosManual = new DevExpress.XtraBars.BarButtonItem();
  38. btnExportCsv = new DevExpress.XtraBars.BarButtonItem();
  39. btnDfLine = new DevExpress.XtraBars.BarButtonItem();
  40. btnDfLineNoRef = new DevExpress.XtraBars.BarButtonItem();
  41. grdPesList = new DevExpress.XtraGrid.GridControl();
  42. gvPesList = new DevExpress.XtraGrid.Views.Grid.GridView();
  43. colId = new DevExpress.XtraGrid.Columns.GridColumn();
  44. colTskId = new DevExpress.XtraGrid.Columns.GridColumn();
  45. colSigId = new DevExpress.XtraGrid.Columns.GridColumn();
  46. colSigTime = new DevExpress.XtraGrid.Columns.GridColumn();
  47. colCategory = new DevExpress.XtraGrid.Columns.GridColumn();
  48. colSigFreq = new DevExpress.XtraGrid.Columns.GridColumn();
  49. colBandWidth = new DevExpress.XtraGrid.Columns.GridColumn();
  50. colMainSatId = new DevExpress.XtraGrid.Columns.GridColumn();
  51. satRepEdit = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
  52. bsSatList = new DevExpress.Xpo.XPBindingSource(components);
  53. colAdjaSatId = new DevExpress.XtraGrid.Columns.GridColumn();
  54. colSigType = new DevExpress.XtraGrid.Columns.GridColumn();
  55. colEmtId = new DevExpress.XtraGrid.Columns.GridColumn();
  56. emtEdit = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
  57. bsEmtList = new DevExpress.Xpo.XPBindingSource(components);
  58. colDt = new DevExpress.XtraGrid.Columns.GridColumn();
  59. colDf = new DevExpress.XtraGrid.Columns.GridColumn();
  60. colSnr = new DevExpress.XtraGrid.Columns.GridColumn();
  61. colCreateTime = new DevExpress.XtraGrid.Columns.GridColumn();
  62. colIsValid = new DevExpress.XtraGrid.Columns.GridColumn();
  63. popMenu = new DevExpress.XtraBars.PopupMenu(components);
  64. ((System.ComponentModel.ISupportInitialize)bsPesList).BeginInit();
  65. ((System.ComponentModel.ISupportInitialize)bmgMain).BeginInit();
  66. ((System.ComponentModel.ISupportInitialize)grdPesList).BeginInit();
  67. ((System.ComponentModel.ISupportInitialize)gvPesList).BeginInit();
  68. ((System.ComponentModel.ISupportInitialize)satRepEdit).BeginInit();
  69. ((System.ComponentModel.ISupportInitialize)bsSatList).BeginInit();
  70. ((System.ComponentModel.ISupportInitialize)emtEdit).BeginInit();
  71. ((System.ComponentModel.ISupportInitialize)bsEmtList).BeginInit();
  72. ((System.ComponentModel.ISupportInitialize)popMenu).BeginInit();
  73. SuspendLayout();
  74. //
  75. // bsPesList
  76. //
  77. bsPesList.ObjectType = typeof(Pes);
  78. //
  79. // bmgMain
  80. //
  81. bmgMain.DockControls.Add(barDockControlTop);
  82. bmgMain.DockControls.Add(barDockControlBottom);
  83. bmgMain.DockControls.Add(barDockControlLeft);
  84. bmgMain.DockControls.Add(barDockControlRight);
  85. bmgMain.Form = this;
  86. bmgMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] { btnDrawDtoLine, btnDrawDtoLineNoRef, btnPosManual, btnExportCsv, btnDfLine, btnDfLineNoRef });
  87. bmgMain.MaxItemId = 6;
  88. //
  89. // barDockControlTop
  90. //
  91. barDockControlTop.CausesValidation = false;
  92. barDockControlTop.Dock = DockStyle.Top;
  93. barDockControlTop.Location = new Point(0, 0);
  94. barDockControlTop.Manager = bmgMain;
  95. barDockControlTop.Size = new Size(1028, 0);
  96. //
  97. // barDockControlBottom
  98. //
  99. barDockControlBottom.CausesValidation = false;
  100. barDockControlBottom.Dock = DockStyle.Bottom;
  101. barDockControlBottom.Location = new Point(0, 284);
  102. barDockControlBottom.Manager = bmgMain;
  103. barDockControlBottom.Size = new Size(1028, 0);
  104. //
  105. // barDockControlLeft
  106. //
  107. barDockControlLeft.CausesValidation = false;
  108. barDockControlLeft.Dock = DockStyle.Left;
  109. barDockControlLeft.Location = new Point(0, 0);
  110. barDockControlLeft.Manager = bmgMain;
  111. barDockControlLeft.Size = new Size(0, 284);
  112. //
  113. // barDockControlRight
  114. //
  115. barDockControlRight.CausesValidation = false;
  116. barDockControlRight.Dock = DockStyle.Right;
  117. barDockControlRight.Location = new Point(1028, 0);
  118. barDockControlRight.Manager = bmgMain;
  119. barDockControlRight.Size = new Size(0, 284);
  120. //
  121. // btnDrawDtoLine
  122. //
  123. btnDrawDtoLine.Caption = "绘制时差线";
  124. btnDrawDtoLine.Id = 0;
  125. btnDrawDtoLine.ImageOptions.ImageUri.Uri = "chart/charttype_spline";
  126. btnDrawDtoLine.Name = "btnDrawDtoLine";
  127. btnDrawDtoLine.ItemClick += btnDrawDtoLine_ItemClick;
  128. //
  129. // btnDrawDtoLineNoRef
  130. //
  131. btnDrawDtoLineNoRef.Caption = "绘制时差线(无参)";
  132. btnDrawDtoLineNoRef.Id = 1;
  133. btnDrawDtoLineNoRef.ImageOptions.ImageUri.Uri = "chart/charttype_spline";
  134. btnDrawDtoLineNoRef.Name = "btnDrawDtoLineNoRef";
  135. btnDrawDtoLineNoRef.ItemClick += btnDrawDtoLine_ItemClick;
  136. //
  137. // btnPosManual
  138. //
  139. btnPosManual.Caption = "手动定位";
  140. btnPosManual.Id = 2;
  141. btnPosManual.ImageOptions.ImageUri.Uri = "dashboards/geopointmaps";
  142. btnPosManual.Name = "btnPosManual";
  143. btnPosManual.ItemClick += btnPosManual_ItemClick;
  144. //
  145. // btnExportCsv
  146. //
  147. btnExportCsv.Caption = "导出列表";
  148. btnExportCsv.Id = 3;
  149. btnExportCsv.ImageOptions.ImageUri.Uri = "ExportToCSV";
  150. btnExportCsv.Name = "btnExportCsv";
  151. btnExportCsv.ItemClick += btnExportCsv_ItemClick;
  152. //
  153. // btnDfLine
  154. //
  155. btnDfLine.Caption = "绘制频差线";
  156. btnDfLine.Id = 4;
  157. btnDfLine.ImageOptions.ImageUri.Uri = "chart/charttype_stepline";
  158. btnDfLine.Name = "btnDfLine";
  159. btnDfLine.ItemClick += btnDfLine_ItemClick;
  160. //
  161. // btnDfLineNoRef
  162. //
  163. btnDfLineNoRef.Caption = "绘制频差线(无参)";
  164. btnDfLineNoRef.Id = 5;
  165. btnDfLineNoRef.ImageOptions.ImageUri.Uri = "chart/charttype_stepline";
  166. btnDfLineNoRef.Name = "btnDfLineNoRef";
  167. btnDfLineNoRef.ItemClick += btnDfLine_ItemClick;
  168. //
  169. // grdPesList
  170. //
  171. grdPesList.DataSource = bsPesList;
  172. grdPesList.Dock = DockStyle.Fill;
  173. grdPesList.Location = new Point(0, 0);
  174. grdPesList.MainView = gvPesList;
  175. grdPesList.MenuManager = bmgMain;
  176. grdPesList.Name = "grdPesList";
  177. grdPesList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { satRepEdit, emtEdit });
  178. grdPesList.Size = new Size(1028, 284);
  179. grdPesList.TabIndex = 4;
  180. grdPesList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gvPesList });
  181. //
  182. // gvPesList
  183. //
  184. gvPesList.Appearance.Row.Options.UseTextOptions = true;
  185. gvPesList.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
  186. gvPesList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { colId, colTskId, colSigId, colSigTime, colCategory, colSigFreq, colBandWidth, colMainSatId, colAdjaSatId, colSigType, colEmtId, colDt, colDf, colSnr, colCreateTime, colIsValid });
  187. gvPesList.GridControl = grdPesList;
  188. gvPesList.Name = "gvPesList";
  189. gvPesList.OptionsBehavior.Editable = false;
  190. gvPesList.OptionsSelection.MultiSelect = true;
  191. gvPesList.OptionsView.ShowGroupPanel = false;
  192. gvPesList.RowClick += gvPesList_RowClick;
  193. gvPesList.RowCellStyle += gvPesList_RowCellStyle;
  194. gvPesList.RowStyle += gvPesList_RowStyle;
  195. gvPesList.CustomColumnDisplayText += gvPesList_CustomColumnDisplayText;
  196. //
  197. // colId
  198. //
  199. colId.FieldName = "Id";
  200. colId.Name = "colId";
  201. //
  202. // colTskId
  203. //
  204. colTskId.FieldName = "TskId";
  205. colTskId.Name = "colTskId";
  206. //
  207. // colSigId
  208. //
  209. colSigId.FieldName = "SigId";
  210. colSigId.Name = "colSigId";
  211. //
  212. // colSigTime
  213. //
  214. colSigTime.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss.fff";
  215. colSigTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
  216. colSigTime.FieldName = "SigTime";
  217. colSigTime.Name = "colSigTime";
  218. colSigTime.Visible = true;
  219. colSigTime.VisibleIndex = 0;
  220. colSigTime.Width = 115;
  221. //
  222. // colCategory
  223. //
  224. colCategory.FieldName = "Category";
  225. colCategory.Name = "colCategory";
  226. colCategory.Visible = true;
  227. colCategory.VisibleIndex = 5;
  228. colCategory.Width = 61;
  229. //
  230. // colSigFreq
  231. //
  232. colSigFreq.Caption = "信号频点(MHz)";
  233. colSigFreq.FieldName = "SigFreq";
  234. colSigFreq.Name = "colSigFreq";
  235. colSigFreq.Visible = true;
  236. colSigFreq.VisibleIndex = 1;
  237. colSigFreq.Width = 68;
  238. //
  239. // colBandWidth
  240. //
  241. colBandWidth.Caption = "信号带宽(kHz)";
  242. colBandWidth.FieldName = "BandWidth";
  243. colBandWidth.Name = "colBandWidth";
  244. colBandWidth.Visible = true;
  245. colBandWidth.VisibleIndex = 2;
  246. colBandWidth.Width = 68;
  247. //
  248. // colMainSatId
  249. //
  250. colMainSatId.Caption = "主星";
  251. colMainSatId.ColumnEdit = satRepEdit;
  252. colMainSatId.FieldName = "MainSatId";
  253. colMainSatId.Name = "colMainSatId";
  254. colMainSatId.Visible = true;
  255. colMainSatId.VisibleIndex = 3;
  256. colMainSatId.Width = 84;
  257. //
  258. // satRepEdit
  259. //
  260. satRepEdit.AutoHeight = false;
  261. satRepEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) });
  262. satRepEdit.DataSource = bsSatList;
  263. satRepEdit.DisplayMember = "This";
  264. satRepEdit.Name = "satRepEdit";
  265. satRepEdit.NullText = "无";
  266. satRepEdit.ValueMember = "Oid";
  267. //
  268. // bsSatList
  269. //
  270. bsSatList.DisplayableProperties = "This;Oid";
  271. bsSatList.ObjectType = typeof(Sats.Sat);
  272. //
  273. // colAdjaSatId
  274. //
  275. colAdjaSatId.Caption = "邻星";
  276. colAdjaSatId.ColumnEdit = satRepEdit;
  277. colAdjaSatId.FieldName = "AdjaSatId";
  278. colAdjaSatId.Name = "colAdjaSatId";
  279. colAdjaSatId.Visible = true;
  280. colAdjaSatId.VisibleIndex = 4;
  281. colAdjaSatId.Width = 85;
  282. //
  283. // colSigType
  284. //
  285. colSigType.FieldName = "SigType";
  286. colSigType.Name = "colSigType";
  287. //
  288. // colEmtId
  289. //
  290. colEmtId.ColumnEdit = emtEdit;
  291. colEmtId.FieldName = "EmtId";
  292. colEmtId.Name = "colEmtId";
  293. colEmtId.Visible = true;
  294. colEmtId.VisibleIndex = 6;
  295. colEmtId.Width = 61;
  296. //
  297. // emtEdit
  298. //
  299. emtEdit.AutoHeight = false;
  300. emtEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) });
  301. emtEdit.DataSource = bsEmtList;
  302. emtEdit.DisplayMember = "Name";
  303. emtEdit.Name = "emtEdit";
  304. emtEdit.NullText = "无";
  305. emtEdit.ValueMember = "Oid";
  306. //
  307. // bsEmtList
  308. //
  309. bsEmtList.DisplayableProperties = "Oid;Name";
  310. bsEmtList.ObjectType = typeof(Emts.Emt);
  311. //
  312. // colDt
  313. //
  314. colDt.FieldName = "Dt";
  315. colDt.Name = "colDt";
  316. colDt.Visible = true;
  317. colDt.VisibleIndex = 7;
  318. colDt.Width = 61;
  319. //
  320. // colDf
  321. //
  322. colDf.FieldName = "Df";
  323. colDf.Name = "colDf";
  324. colDf.Visible = true;
  325. colDf.VisibleIndex = 8;
  326. colDf.Width = 61;
  327. //
  328. // colSnr
  329. //
  330. colSnr.FieldName = "Snr";
  331. colSnr.Name = "colSnr";
  332. colSnr.Visible = true;
  333. colSnr.VisibleIndex = 9;
  334. colSnr.Width = 61;
  335. //
  336. // colCreateTime
  337. //
  338. colCreateTime.Caption = "完成时间";
  339. colCreateTime.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
  340. colCreateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
  341. colCreateTime.FieldName = "CreateTime";
  342. colCreateTime.Name = "colCreateTime";
  343. colCreateTime.Visible = true;
  344. colCreateTime.VisibleIndex = 10;
  345. colCreateTime.Width = 82;
  346. //
  347. // colIsValid
  348. //
  349. colIsValid.FieldName = "IsValid";
  350. colIsValid.Name = "colIsValid";
  351. //
  352. // popMenu
  353. //
  354. popMenu.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(btnDrawDtoLine), new DevExpress.XtraBars.LinkPersistInfo(btnDrawDtoLineNoRef), new DevExpress.XtraBars.LinkPersistInfo(btnDfLine), new DevExpress.XtraBars.LinkPersistInfo(btnDfLineNoRef), new DevExpress.XtraBars.LinkPersistInfo(btnPosManual), new DevExpress.XtraBars.LinkPersistInfo(btnExportCsv) });
  355. popMenu.Manager = bmgMain;
  356. popMenu.Name = "popMenu";
  357. //
  358. // PesGridListCtrl
  359. //
  360. AutoScaleDimensions = new SizeF(7F, 14F);
  361. AutoScaleMode = AutoScaleMode.Font;
  362. Controls.Add(grdPesList);
  363. Controls.Add(barDockControlLeft);
  364. Controls.Add(barDockControlRight);
  365. Controls.Add(barDockControlBottom);
  366. Controls.Add(barDockControlTop);
  367. Name = "PesGridListCtrl";
  368. Size = new Size(1028, 284);
  369. ((System.ComponentModel.ISupportInitialize)bsPesList).EndInit();
  370. ((System.ComponentModel.ISupportInitialize)bmgMain).EndInit();
  371. ((System.ComponentModel.ISupportInitialize)grdPesList).EndInit();
  372. ((System.ComponentModel.ISupportInitialize)gvPesList).EndInit();
  373. ((System.ComponentModel.ISupportInitialize)satRepEdit).EndInit();
  374. ((System.ComponentModel.ISupportInitialize)bsSatList).EndInit();
  375. ((System.ComponentModel.ISupportInitialize)emtEdit).EndInit();
  376. ((System.ComponentModel.ISupportInitialize)bsEmtList).EndInit();
  377. ((System.ComponentModel.ISupportInitialize)popMenu).EndInit();
  378. ResumeLayout(false);
  379. PerformLayout();
  380. }
  381. #endregion
  382. private DevExpress.Xpo.XPBindingSource bsPesList;
  383. private DevExpress.XtraBars.BarManager bmgMain;
  384. private DevExpress.XtraBars.BarDockControl barDockControlTop;
  385. private DevExpress.XtraBars.BarDockControl barDockControlBottom;
  386. private DevExpress.XtraBars.BarDockControl barDockControlLeft;
  387. private DevExpress.XtraBars.BarDockControl barDockControlRight;
  388. private DevExpress.XtraGrid.GridControl grdPesList;
  389. private DevExpress.XtraGrid.Views.Grid.GridView gvPesList;
  390. private DevExpress.XtraGrid.Columns.GridColumn colId;
  391. private DevExpress.XtraGrid.Columns.GridColumn colTskId;
  392. private DevExpress.XtraGrid.Columns.GridColumn colSigId;
  393. private DevExpress.XtraGrid.Columns.GridColumn colEmtId;
  394. private DevExpress.XtraGrid.Columns.GridColumn colSigTime;
  395. private DevExpress.XtraGrid.Columns.GridColumn colSigFreq;
  396. private DevExpress.XtraGrid.Columns.GridColumn colBandWidth;
  397. private DevExpress.XtraGrid.Columns.GridColumn colCreateTime;
  398. private DevExpress.XtraGrid.Columns.GridColumn colCategory;
  399. private DevExpress.XtraGrid.Columns.GridColumn colSigType;
  400. private DevExpress.XtraGrid.Columns.GridColumn colMainSatId;
  401. private DevExpress.XtraGrid.Columns.GridColumn colAdjaSatId;
  402. private DevExpress.XtraGrid.Columns.GridColumn colDt;
  403. private DevExpress.XtraGrid.Columns.GridColumn colDf;
  404. private DevExpress.XtraGrid.Columns.GridColumn colSnr;
  405. private DevExpress.XtraBars.PopupMenu popMenu;
  406. private DevExpress.XtraBars.BarButtonItem btnDrawDtoLine;
  407. private DevExpress.XtraBars.BarButtonItem btnDrawDtoLineNoRef;
  408. private DevExpress.Xpo.XPBindingSource bsSatList;
  409. private DevExpress.Xpo.XPBindingSource bsEmtList;
  410. private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit satRepEdit;
  411. private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit emtEdit;
  412. private DevExpress.XtraBars.BarButtonItem btnPosManual;
  413. private DevExpress.XtraGrid.Columns.GridColumn colIsValid;
  414. private DevExpress.XtraBars.BarButtonItem btnExportCsv;
  415. private DevExpress.XtraBars.BarButtonItem btnDfLine;
  416. private DevExpress.XtraBars.BarButtonItem btnDfLineNoRef;
  417. }
  418. }