CtrlStation.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. namespace DW5S.App.UserControl
  2. {
  3. partial class CtrlStation
  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. DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
  29. AdChannelgView = new DevExpress.XtraGrid.Views.Grid.GridView();
  30. gcChNum = new DevExpress.XtraGrid.Columns.GridColumn();
  31. gcCenterFreq = new DevExpress.XtraGrid.Columns.GridColumn();
  32. gcSatInfoID = new DevExpress.XtraGrid.Columns.GridColumn();
  33. gcTxInfoId = new DevExpress.XtraGrid.Columns.GridColumn();
  34. gcEnable = new DevExpress.XtraGrid.Columns.GridColumn();
  35. gridStation = new DevExpress.XtraGrid.GridControl();
  36. Adgview = new DevExpress.XtraGrid.Views.Grid.GridView();
  37. ((System.ComponentModel.ISupportInitialize)AdChannelgView).BeginInit();
  38. ((System.ComponentModel.ISupportInitialize)gridStation).BeginInit();
  39. ((System.ComponentModel.ISupportInitialize)Adgview).BeginInit();
  40. SuspendLayout();
  41. //
  42. // AdChannelgView
  43. //
  44. AdChannelgView.Appearance.Row.Options.UseTextOptions = true;
  45. AdChannelgView.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
  46. AdChannelgView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { gcChNum, gcCenterFreq, gcSatInfoID, gcTxInfoId, gcEnable });
  47. AdChannelgView.GridControl = gridStation;
  48. AdChannelgView.Name = "AdChannelgView";
  49. AdChannelgView.OptionsBehavior.Editable = false;
  50. AdChannelgView.OptionsView.ShowGroupPanel = false;
  51. //
  52. // gcChNum
  53. //
  54. gcChNum.Caption = "通道号";
  55. gcChNum.FieldName = "ChNum";
  56. gcChNum.Name = "gcChNum";
  57. gcChNum.Visible = true;
  58. gcChNum.VisibleIndex = 0;
  59. //
  60. // gcCenterFreq
  61. //
  62. gcCenterFreq.Caption = "中心频点(MHz)";
  63. gcCenterFreq.FieldName = "CenterFreq";
  64. gcCenterFreq.Name = "gcCenterFreq";
  65. gcCenterFreq.Visible = true;
  66. gcCenterFreq.VisibleIndex = 1;
  67. //
  68. // gcSatInfoID
  69. //
  70. gcSatInfoID.Caption = "对应卫星";
  71. gcSatInfoID.FieldName = "SatInfoID";
  72. gcSatInfoID.Name = "gcSatInfoID";
  73. gcSatInfoID.Visible = true;
  74. gcSatInfoID.VisibleIndex = 2;
  75. //
  76. // gcTxInfoId
  77. //
  78. gcTxInfoId.Caption = "对应天线";
  79. gcTxInfoId.FieldName = "TxInfoID";
  80. gcTxInfoId.Name = "gcTxInfoId";
  81. gcTxInfoId.Visible = true;
  82. gcTxInfoId.VisibleIndex = 3;
  83. //
  84. // gcEnable
  85. //
  86. gcEnable.Caption = "通道启用状态";
  87. gcEnable.FieldName = "Enable";
  88. gcEnable.Name = "gcEnable";
  89. gcEnable.Visible = true;
  90. gcEnable.VisibleIndex = 4;
  91. //
  92. // gridStation
  93. //
  94. gridStation.Dock = System.Windows.Forms.DockStyle.Fill;
  95. gridLevelNode1.LevelTemplate = AdChannelgView;
  96. gridLevelNode1.RelationName = "AdChannels";
  97. gridStation.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] { gridLevelNode1 });
  98. gridStation.Location = new System.Drawing.Point(0, 0);
  99. gridStation.MainView = Adgview;
  100. gridStation.Name = "gridStation";
  101. gridStation.ShowOnlyPredefinedDetails = true;
  102. gridStation.Size = new System.Drawing.Size(647, 422);
  103. gridStation.TabIndex = 0;
  104. gridStation.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { Adgview, AdChannelgView });
  105. //
  106. // Adgview
  107. //
  108. Adgview.Appearance.Row.Options.UseTextOptions = true;
  109. Adgview.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
  110. Adgview.GridControl = gridStation;
  111. Adgview.Name = "Adgview";
  112. Adgview.OptionsBehavior.Editable = false;
  113. Adgview.OptionsSelection.MultiSelect = true;
  114. Adgview.OptionsView.ShowGroupPanel = false;
  115. Adgview.DoubleClick += gridView1_DoubleClick;
  116. //
  117. // CtrlStation
  118. //
  119. AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  120. AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  121. Controls.Add(gridStation);
  122. Name = "CtrlStation";
  123. Size = new System.Drawing.Size(647, 422);
  124. Load += CtrlStation_Load;
  125. ((System.ComponentModel.ISupportInitialize)AdChannelgView).EndInit();
  126. ((System.ComponentModel.ISupportInitialize)gridStation).EndInit();
  127. ((System.ComponentModel.ISupportInitialize)Adgview).EndInit();
  128. ResumeLayout(false);
  129. }
  130. #endregion
  131. private DevExpress.XtraGrid.GridControl gridStation;
  132. private DevExpress.XtraGrid.Views.Grid.GridView Adgview;
  133. private DevExpress.XtraGrid.Views.Grid.GridView AdChannelgView;
  134. private DevExpress.XtraGrid.Columns.GridColumn gcChNum;
  135. private DevExpress.XtraGrid.Columns.GridColumn gcCenterFreq;
  136. private DevExpress.XtraGrid.Columns.GridColumn gcSatInfoID;
  137. private DevExpress.XtraGrid.Columns.GridColumn gcTxInfoId;
  138. private DevExpress.XtraGrid.Columns.GridColumn gcEnable;
  139. }
  140. }