Main_Form.Designer.cs 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. namespace RF_TRIO_PLL_ZIG
  2. {
  3. partial class Main_Form
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 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 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Form));
  30. this.groupBox9 = new System.Windows.Forms.GroupBox();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button_terminal = new System.Windows.Forms.Button();
  33. this.setcheck_checkBox = new System.Windows.Forms.CheckBox();
  34. this.cmCom_Port = new System.Windows.Forms.Label();
  35. this.button_PortOpen = new System.Windows.Forms.Button();
  36. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  37. this.cmBaudRate = new System.Windows.Forms.Label();
  38. this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
  39. this.groupBox8 = new System.Windows.Forms.GroupBox();
  40. this.numericUpDown_ATT_3_5G_HIGH2 = new System.Windows.Forms.NumericUpDown();
  41. this.numericUpDown_ATT_3_5G_COM1 = new System.Windows.Forms.NumericUpDown();
  42. this.label41 = new System.Windows.Forms.Label();
  43. this.numericUpDown_ATT_3_5G_COM2 = new System.Windows.Forms.NumericUpDown();
  44. this.numericUpDown_ATT_3_5G_LOW2 = new System.Windows.Forms.NumericUpDown();
  45. this.label21 = new System.Windows.Forms.Label();
  46. this.label20 = new System.Windows.Forms.Label();
  47. this.label19 = new System.Windows.Forms.Label();
  48. this.label26 = new System.Windows.Forms.Label();
  49. this.numericUpDown_ATT_3_5G_LOW1 = new System.Windows.Forms.NumericUpDown();
  50. this.label28 = new System.Windows.Forms.Label();
  51. this.numericUpDown_ATT_3_5G_HIGH1 = new System.Windows.Forms.NumericUpDown();
  52. this.groupBox17 = new System.Windows.Forms.GroupBox();
  53. this.label74 = new System.Windows.Forms.Label();
  54. this.label73 = new System.Windows.Forms.Label();
  55. this.pictureBox_PATH_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  56. this.pictureBox_PATH_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  57. this.pictureBox_PATH_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  58. this.pictureBox_PATH_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  59. this.label78 = new System.Windows.Forms.Label();
  60. this.label77 = new System.Windows.Forms.Label();
  61. this.label76 = new System.Windows.Forms.Label();
  62. this.label75 = new System.Windows.Forms.Label();
  63. this.pictureBox_PLL_ON_OFF_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  64. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  65. this.pictureBox_PLL_ON_OFF_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  66. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  67. this.pictureBox_PATH_3_5G_UL_ON = new System.Windows.Forms.PictureBox();
  68. this.pictureBox_PATH_3_5G_UL_OFF = new System.Windows.Forms.PictureBox();
  69. this.pictureBox_PATH_3_5G_DL_ON = new System.Windows.Forms.PictureBox();
  70. this.pictureBox_PATH_3_5G_DL_OFF = new System.Windows.Forms.PictureBox();
  71. this.label79 = new System.Windows.Forms.Label();
  72. this.label80 = new System.Windows.Forms.Label();
  73. this.groupBox10 = new System.Windows.Forms.GroupBox();
  74. this.groupBox11 = new System.Windows.Forms.GroupBox();
  75. this.numericUpDown_PLL_3_5G_HIGH = new System.Windows.Forms.NumericUpDown();
  76. this.numericUpDown_PLL_3_5G_LOW = new System.Windows.Forms.NumericUpDown();
  77. this.label32 = new System.Windows.Forms.Label();
  78. this.label33 = new System.Windows.Forms.Label();
  79. this.timer = new System.Windows.Forms.Timer(this.components);
  80. this.groupBox12 = new System.Windows.Forms.GroupBox();
  81. this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
  82. this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
  83. this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
  84. this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
  85. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  86. this.groupBox_TDD = new System.Windows.Forms.GroupBox();
  87. this.label24 = new System.Windows.Forms.Label();
  88. this.label22 = new System.Windows.Forms.Label();
  89. this.pictureBox_TDD_T_SYNC_DL_OFF = new System.Windows.Forms.PictureBox();
  90. this.pictureBox_TDD_T_SYNC_DL_ON = new System.Windows.Forms.PictureBox();
  91. this.pictureBox_TDD_T_SYNC_UL_ON = new System.Windows.Forms.PictureBox();
  92. this.pictureBox_TDD_T_SYNC_UL_OFF = new System.Windows.Forms.PictureBox();
  93. this.groupBox3 = new System.Windows.Forms.GroupBox();
  94. this.label_28V_Det = new System.Windows.Forms.Label();
  95. this.label3_5GHz_UL_OUT = new System.Windows.Forms.Label();
  96. this.label_RFU_Temp = new System.Windows.Forms.Label();
  97. this.label3_5GHz_UL_IN = new System.Windows.Forms.Label();
  98. this.label3_5GHz_DL_OUT = new System.Windows.Forms.Label();
  99. this.label3_5GHz_DL_IN = new System.Windows.Forms.Label();
  100. this.label40 = new System.Windows.Forms.Label();
  101. this.label34 = new System.Windows.Forms.Label();
  102. this.label39 = new System.Windows.Forms.Label();
  103. this.label31 = new System.Windows.Forms.Label();
  104. this.label30 = new System.Windows.Forms.Label();
  105. this.label29 = new System.Windows.Forms.Label();
  106. this.button_Set = new System.Windows.Forms.Button();
  107. this.button1 = new System.Windows.Forms.Button();
  108. this.label35 = new System.Windows.Forms.Label();
  109. this.label27 = new System.Windows.Forms.Label();
  110. this.numericUpDown_DAC_VoltCtrl_A = new System.Windows.Forms.NumericUpDown();
  111. this.numericUpDown_DAC_VoltCtrl_E = new System.Windows.Forms.NumericUpDown();
  112. this.groupBox6 = new System.Windows.Forms.GroupBox();
  113. this.label10 = new System.Windows.Forms.Label();
  114. this.numericUpDown11 = new System.Windows.Forms.NumericUpDown();
  115. this.numericUpDown10 = new System.Windows.Forms.NumericUpDown();
  116. this.numericUpDown9 = new System.Windows.Forms.NumericUpDown();
  117. this.numericUpDown_DAC_VoltCtrl_H = new System.Windows.Forms.NumericUpDown();
  118. this.numericUpDown_DAC_VoltCtrl_F = new System.Windows.Forms.NumericUpDown();
  119. this.numericUpDown_DAC_VoltCtrl_G = new System.Windows.Forms.NumericUpDown();
  120. this.numericUpDown_DAC_VoltCtrl_D = new System.Windows.Forms.NumericUpDown();
  121. this.numericUpDown_DAC_VoltCtrl_B = new System.Windows.Forms.NumericUpDown();
  122. this.numericUpDown_DAC_VoltCtrl_C = new System.Windows.Forms.NumericUpDown();
  123. this.label37 = new System.Windows.Forms.Label();
  124. this.label12 = new System.Windows.Forms.Label();
  125. this.label25 = new System.Windows.Forms.Label();
  126. this.label36 = new System.Windows.Forms.Label();
  127. this.label38 = new System.Windows.Forms.Label();
  128. this.label23 = new System.Windows.Forms.Label();
  129. this.button_Save = new System.Windows.Forms.Button();
  130. this.label_Build = new System.Windows.Forms.Label();
  131. this.groupBox9.SuspendLayout();
  132. this.groupBox8.SuspendLayout();
  133. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_HIGH2)).BeginInit();
  134. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).BeginInit();
  135. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).BeginInit();
  136. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_LOW2)).BeginInit();
  137. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_LOW1)).BeginInit();
  138. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_HIGH1)).BeginInit();
  139. this.groupBox17.SuspendLayout();
  140. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).BeginInit();
  141. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).BeginInit();
  142. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).BeginInit();
  143. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).BeginInit();
  144. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).BeginInit();
  145. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).BeginInit();
  146. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).BeginInit();
  147. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).BeginInit();
  148. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).BeginInit();
  149. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).BeginInit();
  150. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).BeginInit();
  151. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).BeginInit();
  152. this.groupBox10.SuspendLayout();
  153. this.groupBox11.SuspendLayout();
  154. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_HIGH)).BeginInit();
  155. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_LOW)).BeginInit();
  156. this.groupBox12.SuspendLayout();
  157. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
  158. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
  159. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
  160. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
  161. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  162. this.groupBox_TDD.SuspendLayout();
  163. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).BeginInit();
  164. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).BeginInit();
  165. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).BeginInit();
  166. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).BeginInit();
  167. this.groupBox3.SuspendLayout();
  168. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).BeginInit();
  169. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).BeginInit();
  170. this.groupBox6.SuspendLayout();
  171. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).BeginInit();
  172. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).BeginInit();
  173. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).BeginInit();
  174. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).BeginInit();
  175. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).BeginInit();
  176. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).BeginInit();
  177. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).BeginInit();
  178. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).BeginInit();
  179. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).BeginInit();
  180. this.SuspendLayout();
  181. //
  182. // groupBox9
  183. //
  184. this.groupBox9.Controls.Add(this.button3);
  185. this.groupBox9.Controls.Add(this.button_terminal);
  186. this.groupBox9.Controls.Add(this.setcheck_checkBox);
  187. this.groupBox9.Controls.Add(this.cmCom_Port);
  188. this.groupBox9.Controls.Add(this.button_PortOpen);
  189. this.groupBox9.Controls.Add(this.comboBox_Port);
  190. this.groupBox9.Controls.Add(this.cmBaudRate);
  191. this.groupBox9.Controls.Add(this.comboBox_baudrate);
  192. this.groupBox9.Location = new System.Drawing.Point(11, 77);
  193. this.groupBox9.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  194. this.groupBox9.Name = "groupBox9";
  195. this.groupBox9.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  196. this.groupBox9.Size = new System.Drawing.Size(206, 223);
  197. this.groupBox9.TabIndex = 82;
  198. this.groupBox9.TabStop = false;
  199. this.groupBox9.Text = "Connection";
  200. this.groupBox9.Click += new System.EventHandler(this.Cusor_DeFocus);
  201. //
  202. // button3
  203. //
  204. this.button3.Location = new System.Drawing.Point(13, 171);
  205. this.button3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  206. this.button3.Name = "button3";
  207. this.button3.Size = new System.Drawing.Size(180, 34);
  208. this.button3.TabIndex = 93;
  209. this.button3.Text = "Firmware Update";
  210. this.button3.UseVisualStyleBackColor = true;
  211. this.button3.Click += new System.EventHandler(this.Firmware_Update_Click);
  212. //
  213. // button_terminal
  214. //
  215. this.button_terminal.Location = new System.Drawing.Point(13, 131);
  216. this.button_terminal.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  217. this.button_terminal.Name = "button_terminal";
  218. this.button_terminal.Size = new System.Drawing.Size(180, 34);
  219. this.button_terminal.TabIndex = 94;
  220. this.button_terminal.Text = "Terminal";
  221. this.button_terminal.UseVisualStyleBackColor = true;
  222. this.button_terminal.Click += new System.EventHandler(this.Button_terminal_Click);
  223. //
  224. // setcheck_checkBox
  225. //
  226. this.setcheck_checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  227. | System.Windows.Forms.AnchorStyles.Left)
  228. | System.Windows.Forms.AnchorStyles.Right)));
  229. this.setcheck_checkBox.AutoSize = true;
  230. this.setcheck_checkBox.Checked = true;
  231. this.setcheck_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
  232. this.setcheck_checkBox.Location = new System.Drawing.Point(13, 69);
  233. this.setcheck_checkBox.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  234. this.setcheck_checkBox.Name = "setcheck_checkBox";
  235. this.setcheck_checkBox.Size = new System.Drawing.Size(102, 16);
  236. this.setcheck_checkBox.TabIndex = 92;
  237. this.setcheck_checkBox.Text = "Setting Check";
  238. this.setcheck_checkBox.UseVisualStyleBackColor = true;
  239. //
  240. // cmCom_Port
  241. //
  242. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  243. | System.Windows.Forms.AnchorStyles.Left)
  244. | System.Windows.Forms.AnchorStyles.Right)));
  245. this.cmCom_Port.AutoSize = true;
  246. this.cmCom_Port.Location = new System.Drawing.Point(10, 18);
  247. this.cmCom_Port.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  248. this.cmCom_Port.Name = "cmCom_Port";
  249. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  250. this.cmCom_Port.TabIndex = 89;
  251. this.cmCom_Port.Text = "Com Port";
  252. //
  253. // button_PortOpen
  254. //
  255. this.button_PortOpen.Location = new System.Drawing.Point(12, 91);
  256. this.button_PortOpen.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  257. this.button_PortOpen.Name = "button_PortOpen";
  258. this.button_PortOpen.Size = new System.Drawing.Size(180, 34);
  259. this.button_PortOpen.TabIndex = 86;
  260. this.button_PortOpen.Text = "Port Open";
  261. this.button_PortOpen.UseVisualStyleBackColor = true;
  262. this.button_PortOpen.Click += new System.EventHandler(this.Button_PortOpen_Click);
  263. //
  264. // comboBox_Port
  265. //
  266. this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  267. | System.Windows.Forms.AnchorStyles.Left)
  268. | System.Windows.Forms.AnchorStyles.Right)));
  269. this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
  270. this.comboBox_Port.FormattingEnabled = true;
  271. this.comboBox_Port.Location = new System.Drawing.Point(100, 15);
  272. this.comboBox_Port.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  273. this.comboBox_Port.Name = "comboBox_Port";
  274. this.comboBox_Port.Size = new System.Drawing.Size(93, 20);
  275. this.comboBox_Port.TabIndex = 88;
  276. this.comboBox_Port.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Port_SelectedIndexChanged);
  277. this.comboBox_Port.MouseDown += new System.Windows.Forms.MouseEventHandler(this.comboBox_Port_MouseDown);
  278. //
  279. // cmBaudRate
  280. //
  281. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  282. | System.Windows.Forms.AnchorStyles.Left)
  283. | System.Windows.Forms.AnchorStyles.Right)));
  284. this.cmBaudRate.AutoSize = true;
  285. this.cmBaudRate.Location = new System.Drawing.Point(10, 47);
  286. this.cmBaudRate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  287. this.cmBaudRate.Name = "cmBaudRate";
  288. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  289. this.cmBaudRate.TabIndex = 90;
  290. this.cmBaudRate.Text = "Baud Rate(bps)";
  291. //
  292. // comboBox_baudrate
  293. //
  294. this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  295. | System.Windows.Forms.AnchorStyles.Left)
  296. | System.Windows.Forms.AnchorStyles.Right)));
  297. this.comboBox_baudrate.FormattingEnabled = true;
  298. this.comboBox_baudrate.Items.AddRange(new object[] {
  299. "9600",
  300. "14400",
  301. "19200",
  302. "38400",
  303. "57600",
  304. "115200",
  305. "128000"});
  306. this.comboBox_baudrate.Location = new System.Drawing.Point(101, 45);
  307. this.comboBox_baudrate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  308. this.comboBox_baudrate.Name = "comboBox_baudrate";
  309. this.comboBox_baudrate.Size = new System.Drawing.Size(93, 20);
  310. this.comboBox_baudrate.TabIndex = 91;
  311. this.comboBox_baudrate.Text = "115200";
  312. //
  313. // groupBox8
  314. //
  315. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_HIGH2);
  316. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_COM1);
  317. this.groupBox8.Controls.Add(this.label41);
  318. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_COM2);
  319. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_LOW2);
  320. this.groupBox8.Controls.Add(this.label21);
  321. this.groupBox8.Controls.Add(this.label20);
  322. this.groupBox8.Controls.Add(this.label19);
  323. this.groupBox8.Controls.Add(this.label26);
  324. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_LOW1);
  325. this.groupBox8.Controls.Add(this.label28);
  326. this.groupBox8.Controls.Add(this.numericUpDown_ATT_3_5G_HIGH1);
  327. this.groupBox8.Location = new System.Drawing.Point(222, 219);
  328. this.groupBox8.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  329. this.groupBox8.Name = "groupBox8";
  330. this.groupBox8.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  331. this.groupBox8.Size = new System.Drawing.Size(444, 174);
  332. this.groupBox8.TabIndex = 94;
  333. this.groupBox8.TabStop = false;
  334. this.groupBox8.Text = "ATTEN(dB)";
  335. this.groupBox8.Click += new System.EventHandler(this.Cusor_DeFocus);
  336. //
  337. // numericUpDown_ATT_3_5G_HIGH2
  338. //
  339. this.numericUpDown_ATT_3_5G_HIGH2.DecimalPlaces = 2;
  340. this.numericUpDown_ATT_3_5G_HIGH2.Increment = new decimal(new int[] {
  341. 25,
  342. 0,
  343. 0,
  344. 131072});
  345. this.numericUpDown_ATT_3_5G_HIGH2.Location = new System.Drawing.Point(351, 92);
  346. this.numericUpDown_ATT_3_5G_HIGH2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  347. this.numericUpDown_ATT_3_5G_HIGH2.Maximum = new decimal(new int[] {
  348. 30,
  349. 0,
  350. 0,
  351. 0});
  352. this.numericUpDown_ATT_3_5G_HIGH2.Name = "numericUpDown_ATT_3_5G_HIGH2";
  353. this.numericUpDown_ATT_3_5G_HIGH2.Size = new System.Drawing.Size(65, 21);
  354. this.numericUpDown_ATT_3_5G_HIGH2.TabIndex = 16;
  355. this.numericUpDown_ATT_3_5G_HIGH2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  356. this.numericUpDown_ATT_3_5G_HIGH2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  357. this.numericUpDown_ATT_3_5G_HIGH2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  358. //
  359. // numericUpDown_ATT_3_5G_COM1
  360. //
  361. this.numericUpDown_ATT_3_5G_COM1.DecimalPlaces = 2;
  362. this.numericUpDown_ATT_3_5G_COM1.Increment = new decimal(new int[] {
  363. 25,
  364. 0,
  365. 0,
  366. 131072});
  367. this.numericUpDown_ATT_3_5G_COM1.Location = new System.Drawing.Point(242, 25);
  368. this.numericUpDown_ATT_3_5G_COM1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  369. this.numericUpDown_ATT_3_5G_COM1.Maximum = new decimal(new int[] {
  370. 30,
  371. 0,
  372. 0,
  373. 0});
  374. this.numericUpDown_ATT_3_5G_COM1.Name = "numericUpDown_ATT_3_5G_COM1";
  375. this.numericUpDown_ATT_3_5G_COM1.Size = new System.Drawing.Size(65, 21);
  376. this.numericUpDown_ATT_3_5G_COM1.TabIndex = 19;
  377. this.numericUpDown_ATT_3_5G_COM1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  378. this.numericUpDown_ATT_3_5G_COM1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  379. this.numericUpDown_ATT_3_5G_COM1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  380. //
  381. // label41
  382. //
  383. this.label41.AutoSize = true;
  384. this.label41.Location = new System.Drawing.Point(235, 96);
  385. this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  386. this.label41.Name = "label41";
  387. this.label41.Size = new System.Drawing.Size(100, 12);
  388. this.label41.TabIndex = 15;
  389. this.label41.Text = "ATT_3.5G_HIGH2";
  390. //
  391. // numericUpDown_ATT_3_5G_COM2
  392. //
  393. this.numericUpDown_ATT_3_5G_COM2.DecimalPlaces = 2;
  394. this.numericUpDown_ATT_3_5G_COM2.Increment = new decimal(new int[] {
  395. 25,
  396. 0,
  397. 0,
  398. 131072});
  399. this.numericUpDown_ATT_3_5G_COM2.Location = new System.Drawing.Point(242, 130);
  400. this.numericUpDown_ATT_3_5G_COM2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  401. this.numericUpDown_ATT_3_5G_COM2.Maximum = new decimal(new int[] {
  402. 30,
  403. 0,
  404. 0,
  405. 0});
  406. this.numericUpDown_ATT_3_5G_COM2.Name = "numericUpDown_ATT_3_5G_COM2";
  407. this.numericUpDown_ATT_3_5G_COM2.Size = new System.Drawing.Size(65, 21);
  408. this.numericUpDown_ATT_3_5G_COM2.TabIndex = 12;
  409. this.numericUpDown_ATT_3_5G_COM2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  410. this.numericUpDown_ATT_3_5G_COM2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  411. this.numericUpDown_ATT_3_5G_COM2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  412. //
  413. // numericUpDown_ATT_3_5G_LOW2
  414. //
  415. this.numericUpDown_ATT_3_5G_LOW2.DecimalPlaces = 2;
  416. this.numericUpDown_ATT_3_5G_LOW2.Increment = new decimal(new int[] {
  417. 25,
  418. 0,
  419. 0,
  420. 131072});
  421. this.numericUpDown_ATT_3_5G_LOW2.Location = new System.Drawing.Point(128, 96);
  422. this.numericUpDown_ATT_3_5G_LOW2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  423. this.numericUpDown_ATT_3_5G_LOW2.Maximum = new decimal(new int[] {
  424. 30,
  425. 0,
  426. 0,
  427. 0});
  428. this.numericUpDown_ATT_3_5G_LOW2.Name = "numericUpDown_ATT_3_5G_LOW2";
  429. this.numericUpDown_ATT_3_5G_LOW2.Size = new System.Drawing.Size(65, 21);
  430. this.numericUpDown_ATT_3_5G_LOW2.TabIndex = 17;
  431. this.numericUpDown_ATT_3_5G_LOW2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  432. this.numericUpDown_ATT_3_5G_LOW2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  433. this.numericUpDown_ATT_3_5G_LOW2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  434. //
  435. // label21
  436. //
  437. this.label21.AutoSize = true;
  438. this.label21.Location = new System.Drawing.Point(126, 134);
  439. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  440. this.label21.Name = "label21";
  441. this.label21.Size = new System.Drawing.Size(101, 12);
  442. this.label21.TabIndex = 10;
  443. this.label21.Text = "ATT_3.5G_COM2";
  444. //
  445. // label20
  446. //
  447. this.label20.AutoSize = true;
  448. this.label20.Location = new System.Drawing.Point(12, 100);
  449. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  450. this.label20.Name = "label20";
  451. this.label20.Size = new System.Drawing.Size(98, 12);
  452. this.label20.TabIndex = 14;
  453. this.label20.Text = "ATT_3.5G_LOW2";
  454. //
  455. // label19
  456. //
  457. this.label19.AutoSize = true;
  458. this.label19.Location = new System.Drawing.Point(126, 29);
  459. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  460. this.label19.Name = "label19";
  461. this.label19.Size = new System.Drawing.Size(101, 12);
  462. this.label19.TabIndex = 18;
  463. this.label19.Text = "ATT_3.5G_COM1";
  464. //
  465. // label26
  466. //
  467. this.label26.AutoSize = true;
  468. this.label26.Location = new System.Drawing.Point(12, 69);
  469. this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  470. this.label26.Name = "label26";
  471. this.label26.Size = new System.Drawing.Size(98, 12);
  472. this.label26.TabIndex = 0;
  473. this.label26.Text = "ATT_3.5G_LOW1";
  474. //
  475. // numericUpDown_ATT_3_5G_LOW1
  476. //
  477. this.numericUpDown_ATT_3_5G_LOW1.DecimalPlaces = 2;
  478. this.numericUpDown_ATT_3_5G_LOW1.Increment = new decimal(new int[] {
  479. 25,
  480. 0,
  481. 0,
  482. 131072});
  483. this.numericUpDown_ATT_3_5G_LOW1.Location = new System.Drawing.Point(128, 65);
  484. this.numericUpDown_ATT_3_5G_LOW1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  485. this.numericUpDown_ATT_3_5G_LOW1.Maximum = new decimal(new int[] {
  486. 30,
  487. 0,
  488. 0,
  489. 0});
  490. this.numericUpDown_ATT_3_5G_LOW1.Name = "numericUpDown_ATT_3_5G_LOW1";
  491. this.numericUpDown_ATT_3_5G_LOW1.Size = new System.Drawing.Size(65, 21);
  492. this.numericUpDown_ATT_3_5G_LOW1.TabIndex = 1;
  493. this.numericUpDown_ATT_3_5G_LOW1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  494. this.numericUpDown_ATT_3_5G_LOW1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  495. this.numericUpDown_ATT_3_5G_LOW1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  496. //
  497. // label28
  498. //
  499. this.label28.AutoSize = true;
  500. this.label28.Location = new System.Drawing.Point(235, 69);
  501. this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  502. this.label28.Name = "label28";
  503. this.label28.Size = new System.Drawing.Size(100, 12);
  504. this.label28.TabIndex = 0;
  505. this.label28.Text = "ATT_3.5G_HIGH1";
  506. //
  507. // numericUpDown_ATT_3_5G_HIGH1
  508. //
  509. this.numericUpDown_ATT_3_5G_HIGH1.DecimalPlaces = 2;
  510. this.numericUpDown_ATT_3_5G_HIGH1.Increment = new decimal(new int[] {
  511. 25,
  512. 0,
  513. 0,
  514. 131072});
  515. this.numericUpDown_ATT_3_5G_HIGH1.Location = new System.Drawing.Point(351, 65);
  516. this.numericUpDown_ATT_3_5G_HIGH1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  517. this.numericUpDown_ATT_3_5G_HIGH1.Maximum = new decimal(new int[] {
  518. 30,
  519. 0,
  520. 0,
  521. 0});
  522. this.numericUpDown_ATT_3_5G_HIGH1.Name = "numericUpDown_ATT_3_5G_HIGH1";
  523. this.numericUpDown_ATT_3_5G_HIGH1.Size = new System.Drawing.Size(65, 21);
  524. this.numericUpDown_ATT_3_5G_HIGH1.TabIndex = 1;
  525. this.numericUpDown_ATT_3_5G_HIGH1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  526. this.numericUpDown_ATT_3_5G_HIGH1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  527. this.numericUpDown_ATT_3_5G_HIGH1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  528. //
  529. // groupBox17
  530. //
  531. this.groupBox17.Controls.Add(this.label74);
  532. this.groupBox17.Controls.Add(this.label73);
  533. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_ON);
  534. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_OFF);
  535. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_ON);
  536. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_OFF);
  537. this.groupBox17.Controls.Add(this.label78);
  538. this.groupBox17.Controls.Add(this.label77);
  539. this.groupBox17.Controls.Add(this.label76);
  540. this.groupBox17.Controls.Add(this.label75);
  541. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_ON);
  542. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF);
  543. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_ON);
  544. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF);
  545. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_ON);
  546. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_OFF);
  547. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_ON);
  548. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_OFF);
  549. this.groupBox17.Location = new System.Drawing.Point(222, 76);
  550. this.groupBox17.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  551. this.groupBox17.Name = "groupBox17";
  552. this.groupBox17.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  553. this.groupBox17.Size = new System.Drawing.Size(444, 136);
  554. this.groupBox17.TabIndex = 95;
  555. this.groupBox17.TabStop = false;
  556. this.groupBox17.Text = "Power";
  557. this.groupBox17.Click += new System.EventHandler(this.Cusor_DeFocus);
  558. //
  559. // label74
  560. //
  561. this.label74.AutoSize = true;
  562. this.label74.Location = new System.Drawing.Point(159, 16);
  563. this.label74.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  564. this.label74.Name = "label74";
  565. this.label74.Size = new System.Drawing.Size(105, 12);
  566. this.label74.TabIndex = 102;
  567. this.label74.Text = "PATH_EN_3.5G_H";
  568. //
  569. // label73
  570. //
  571. this.label73.AutoSize = true;
  572. this.label73.Location = new System.Drawing.Point(159, 72);
  573. this.label73.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  574. this.label73.Name = "label73";
  575. this.label73.Size = new System.Drawing.Size(104, 12);
  576. this.label73.TabIndex = 103;
  577. this.label73.Text = "PATH_EN_3.5G_L";
  578. //
  579. // pictureBox_PATH_3_5G_L_ON
  580. //
  581. this.pictureBox_PATH_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_ON.Image")));
  582. this.pictureBox_PATH_3_5G_L_ON.Location = new System.Drawing.Point(182, 91);
  583. this.pictureBox_PATH_3_5G_L_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  584. this.pictureBox_PATH_3_5G_L_ON.Name = "pictureBox_PATH_3_5G_L_ON";
  585. this.pictureBox_PATH_3_5G_L_ON.Size = new System.Drawing.Size(34, 36);
  586. this.pictureBox_PATH_3_5G_L_ON.TabIndex = 98;
  587. this.pictureBox_PATH_3_5G_L_ON.TabStop = false;
  588. this.pictureBox_PATH_3_5G_L_ON.Tag = "15";
  589. this.pictureBox_PATH_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  590. //
  591. // pictureBox_PATH_3_5G_L_OFF
  592. //
  593. this.pictureBox_PATH_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_OFF.Image")));
  594. this.pictureBox_PATH_3_5G_L_OFF.Location = new System.Drawing.Point(182, 91);
  595. this.pictureBox_PATH_3_5G_L_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  596. this.pictureBox_PATH_3_5G_L_OFF.Name = "pictureBox_PATH_3_5G_L_OFF";
  597. this.pictureBox_PATH_3_5G_L_OFF.Size = new System.Drawing.Size(34, 36);
  598. this.pictureBox_PATH_3_5G_L_OFF.TabIndex = 99;
  599. this.pictureBox_PATH_3_5G_L_OFF.TabStop = false;
  600. this.pictureBox_PATH_3_5G_L_OFF.Tag = "16";
  601. this.pictureBox_PATH_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  602. //
  603. // pictureBox_PATH_3_5G_H_ON
  604. //
  605. this.pictureBox_PATH_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_ON.Image")));
  606. this.pictureBox_PATH_3_5G_H_ON.Location = new System.Drawing.Point(182, 31);
  607. this.pictureBox_PATH_3_5G_H_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  608. this.pictureBox_PATH_3_5G_H_ON.Name = "pictureBox_PATH_3_5G_H_ON";
  609. this.pictureBox_PATH_3_5G_H_ON.Size = new System.Drawing.Size(34, 36);
  610. this.pictureBox_PATH_3_5G_H_ON.TabIndex = 100;
  611. this.pictureBox_PATH_3_5G_H_ON.TabStop = false;
  612. this.pictureBox_PATH_3_5G_H_ON.Tag = "13";
  613. this.pictureBox_PATH_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  614. //
  615. // pictureBox_PATH_3_5G_H_OFF
  616. //
  617. this.pictureBox_PATH_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_OFF.Image")));
  618. this.pictureBox_PATH_3_5G_H_OFF.Location = new System.Drawing.Point(182, 31);
  619. this.pictureBox_PATH_3_5G_H_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  620. this.pictureBox_PATH_3_5G_H_OFF.Name = "pictureBox_PATH_3_5G_H_OFF";
  621. this.pictureBox_PATH_3_5G_H_OFF.Size = new System.Drawing.Size(34, 36);
  622. this.pictureBox_PATH_3_5G_H_OFF.TabIndex = 101;
  623. this.pictureBox_PATH_3_5G_H_OFF.TabStop = false;
  624. this.pictureBox_PATH_3_5G_H_OFF.Tag = "14";
  625. this.pictureBox_PATH_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  626. //
  627. // label78
  628. //
  629. this.label78.AutoSize = true;
  630. this.label78.Location = new System.Drawing.Point(275, 16);
  631. this.label78.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  632. this.label78.Name = "label78";
  633. this.label78.Size = new System.Drawing.Size(125, 12);
  634. this.label78.TabIndex = 97;
  635. this.label78.Text = "PLL_ON/OFF_3.5G_H";
  636. //
  637. // label77
  638. //
  639. this.label77.AutoSize = true;
  640. this.label77.Location = new System.Drawing.Point(275, 71);
  641. this.label77.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  642. this.label77.Name = "label77";
  643. this.label77.Size = new System.Drawing.Size(124, 12);
  644. this.label77.TabIndex = 97;
  645. this.label77.Text = "PLL_ON/OFF_3.5G_L";
  646. //
  647. // label76
  648. //
  649. this.label76.AutoSize = true;
  650. this.label76.Location = new System.Drawing.Point(27, 71);
  651. this.label76.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  652. this.label76.Name = "label76";
  653. this.label76.Size = new System.Drawing.Size(112, 12);
  654. this.label76.TabIndex = 97;
  655. this.label76.Text = "PATH_EN_3.5G_UL";
  656. //
  657. // label75
  658. //
  659. this.label75.AutoSize = true;
  660. this.label75.Location = new System.Drawing.Point(27, 16);
  661. this.label75.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  662. this.label75.Name = "label75";
  663. this.label75.Size = new System.Drawing.Size(112, 12);
  664. this.label75.TabIndex = 97;
  665. this.label75.Text = "PATH_EN_3.5G_DL";
  666. //
  667. // pictureBox_PLL_ON_OFF_3_5G_L_ON
  668. //
  669. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_ON.Image")));
  670. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Location = new System.Drawing.Point(308, 91);
  671. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  672. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_L_ON";
  673. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Size = new System.Drawing.Size(34, 36);
  674. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabIndex = 96;
  675. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabStop = false;
  676. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Tag = "19";
  677. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  678. //
  679. // pictureBox_PLL_ON_OFF_3_5G_L_OFF
  680. //
  681. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image")));
  682. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Location = new System.Drawing.Point(308, 91);
  683. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  684. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_L_OFF";
  685. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Size = new System.Drawing.Size(34, 36);
  686. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabIndex = 96;
  687. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabStop = false;
  688. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Tag = "20";
  689. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  690. //
  691. // pictureBox_PLL_ON_OFF_3_5G_H_ON
  692. //
  693. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_ON.Image")));
  694. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Location = new System.Drawing.Point(308, 31);
  695. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  696. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_H_ON";
  697. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Size = new System.Drawing.Size(34, 36);
  698. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabIndex = 96;
  699. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabStop = false;
  700. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Tag = "17";
  701. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  702. //
  703. // pictureBox_PLL_ON_OFF_3_5G_H_OFF
  704. //
  705. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image")));
  706. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Location = new System.Drawing.Point(308, 31);
  707. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  708. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_H_OFF";
  709. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Size = new System.Drawing.Size(34, 36);
  710. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabIndex = 96;
  711. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabStop = false;
  712. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Tag = "18";
  713. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  714. //
  715. // pictureBox_PATH_3_5G_UL_ON
  716. //
  717. this.pictureBox_PATH_3_5G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_ON.Image")));
  718. this.pictureBox_PATH_3_5G_UL_ON.Location = new System.Drawing.Point(62, 91);
  719. this.pictureBox_PATH_3_5G_UL_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  720. this.pictureBox_PATH_3_5G_UL_ON.Name = "pictureBox_PATH_3_5G_UL_ON";
  721. this.pictureBox_PATH_3_5G_UL_ON.Size = new System.Drawing.Size(34, 36);
  722. this.pictureBox_PATH_3_5G_UL_ON.TabIndex = 96;
  723. this.pictureBox_PATH_3_5G_UL_ON.TabStop = false;
  724. this.pictureBox_PATH_3_5G_UL_ON.Tag = "11";
  725. this.pictureBox_PATH_3_5G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  726. //
  727. // pictureBox_PATH_3_5G_UL_OFF
  728. //
  729. this.pictureBox_PATH_3_5G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_OFF.Image")));
  730. this.pictureBox_PATH_3_5G_UL_OFF.Location = new System.Drawing.Point(62, 91);
  731. this.pictureBox_PATH_3_5G_UL_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  732. this.pictureBox_PATH_3_5G_UL_OFF.Name = "pictureBox_PATH_3_5G_UL_OFF";
  733. this.pictureBox_PATH_3_5G_UL_OFF.Size = new System.Drawing.Size(34, 36);
  734. this.pictureBox_PATH_3_5G_UL_OFF.TabIndex = 96;
  735. this.pictureBox_PATH_3_5G_UL_OFF.TabStop = false;
  736. this.pictureBox_PATH_3_5G_UL_OFF.Tag = "12";
  737. this.pictureBox_PATH_3_5G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  738. //
  739. // pictureBox_PATH_3_5G_DL_ON
  740. //
  741. this.pictureBox_PATH_3_5G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_ON.Image")));
  742. this.pictureBox_PATH_3_5G_DL_ON.Location = new System.Drawing.Point(62, 31);
  743. this.pictureBox_PATH_3_5G_DL_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  744. this.pictureBox_PATH_3_5G_DL_ON.Name = "pictureBox_PATH_3_5G_DL_ON";
  745. this.pictureBox_PATH_3_5G_DL_ON.Size = new System.Drawing.Size(34, 36);
  746. this.pictureBox_PATH_3_5G_DL_ON.TabIndex = 96;
  747. this.pictureBox_PATH_3_5G_DL_ON.TabStop = false;
  748. this.pictureBox_PATH_3_5G_DL_ON.Tag = "9";
  749. this.pictureBox_PATH_3_5G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  750. //
  751. // pictureBox_PATH_3_5G_DL_OFF
  752. //
  753. this.pictureBox_PATH_3_5G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_OFF.Image")));
  754. this.pictureBox_PATH_3_5G_DL_OFF.Location = new System.Drawing.Point(62, 31);
  755. this.pictureBox_PATH_3_5G_DL_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  756. this.pictureBox_PATH_3_5G_DL_OFF.Name = "pictureBox_PATH_3_5G_DL_OFF";
  757. this.pictureBox_PATH_3_5G_DL_OFF.Size = new System.Drawing.Size(34, 36);
  758. this.pictureBox_PATH_3_5G_DL_OFF.TabIndex = 96;
  759. this.pictureBox_PATH_3_5G_DL_OFF.TabStop = false;
  760. this.pictureBox_PATH_3_5G_DL_OFF.Tag = "10";
  761. this.pictureBox_PATH_3_5G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  762. //
  763. // label79
  764. //
  765. this.label79.AutoSize = true;
  766. this.label79.Font = new System.Drawing.Font("굴림", 30F, System.Drawing.FontStyle.Bold);
  767. this.label79.Location = new System.Drawing.Point(324, 23);
  768. this.label79.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  769. this.label79.Name = "label79";
  770. this.label79.Size = new System.Drawing.Size(417, 40);
  771. this.label79.TabIndex = 97;
  772. this.label79.Text = "RF-MAO-3.5G-RFU";
  773. //
  774. // label80
  775. //
  776. this.label80.AutoSize = true;
  777. this.label80.Location = new System.Drawing.Point(719, 66);
  778. this.label80.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  779. this.label80.Name = "label80";
  780. this.label80.Size = new System.Drawing.Size(178, 12);
  781. this.label80.TabIndex = 98;
  782. this.label80.Text = "Copyright (c) 2019. BLUECELL";
  783. //
  784. // groupBox10
  785. //
  786. this.groupBox10.Controls.Add(this.groupBox11);
  787. this.groupBox10.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  788. this.groupBox10.Location = new System.Drawing.Point(685, 86);
  789. this.groupBox10.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  790. this.groupBox10.Name = "groupBox10";
  791. this.groupBox10.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  792. this.groupBox10.Size = new System.Drawing.Size(208, 126);
  793. this.groupBox10.TabIndex = 102;
  794. this.groupBox10.TabStop = false;
  795. this.groupBox10.Text = "PLL(MHz)";
  796. this.groupBox10.Click += new System.EventHandler(this.Cusor_DeFocus);
  797. //
  798. // groupBox11
  799. //
  800. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_HIGH);
  801. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_LOW);
  802. this.groupBox11.Controls.Add(this.label32);
  803. this.groupBox11.Controls.Add(this.label33);
  804. this.groupBox11.Location = new System.Drawing.Point(11, 24);
  805. this.groupBox11.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  806. this.groupBox11.Name = "groupBox11";
  807. this.groupBox11.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  808. this.groupBox11.Size = new System.Drawing.Size(197, 79);
  809. this.groupBox11.TabIndex = 94;
  810. this.groupBox11.TabStop = false;
  811. this.groupBox11.Text = "3.5GHz";
  812. this.groupBox11.Click += new System.EventHandler(this.Cusor_DeFocus);
  813. //
  814. // numericUpDown_PLL_3_5G_HIGH
  815. //
  816. this.numericUpDown_PLL_3_5G_HIGH.DecimalPlaces = 2;
  817. this.numericUpDown_PLL_3_5G_HIGH.Increment = new decimal(new int[] {
  818. 1,
  819. 0,
  820. 0,
  821. 131072});
  822. this.numericUpDown_PLL_3_5G_HIGH.Location = new System.Drawing.Point(121, 47);
  823. this.numericUpDown_PLL_3_5G_HIGH.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  824. this.numericUpDown_PLL_3_5G_HIGH.Maximum = new decimal(new int[] {
  825. 4000,
  826. 0,
  827. 0,
  828. 0});
  829. this.numericUpDown_PLL_3_5G_HIGH.Name = "numericUpDown_PLL_3_5G_HIGH";
  830. this.numericUpDown_PLL_3_5G_HIGH.Size = new System.Drawing.Size(65, 21);
  831. this.numericUpDown_PLL_3_5G_HIGH.TabIndex = 1;
  832. this.numericUpDown_PLL_3_5G_HIGH.Value = new decimal(new int[] {
  833. 3700,
  834. 0,
  835. 0,
  836. 0});
  837. this.numericUpDown_PLL_3_5G_HIGH.Enter += new System.EventHandler(this.Activi_Change__Setting);
  838. this.numericUpDown_PLL_3_5G_HIGH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  839. this.numericUpDown_PLL_3_5G_HIGH.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  840. //
  841. // numericUpDown_PLL_3_5G_LOW
  842. //
  843. this.numericUpDown_PLL_3_5G_LOW.DecimalPlaces = 2;
  844. this.numericUpDown_PLL_3_5G_LOW.Increment = new decimal(new int[] {
  845. 1,
  846. 0,
  847. 0,
  848. 131072});
  849. this.numericUpDown_PLL_3_5G_LOW.Location = new System.Drawing.Point(121, 19);
  850. this.numericUpDown_PLL_3_5G_LOW.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  851. this.numericUpDown_PLL_3_5G_LOW.Maximum = new decimal(new int[] {
  852. 4000,
  853. 0,
  854. 0,
  855. 0});
  856. this.numericUpDown_PLL_3_5G_LOW.Name = "numericUpDown_PLL_3_5G_LOW";
  857. this.numericUpDown_PLL_3_5G_LOW.Size = new System.Drawing.Size(65, 21);
  858. this.numericUpDown_PLL_3_5G_LOW.TabIndex = 1;
  859. this.numericUpDown_PLL_3_5G_LOW.Value = new decimal(new int[] {
  860. 3600,
  861. 0,
  862. 0,
  863. 0});
  864. this.numericUpDown_PLL_3_5G_LOW.Enter += new System.EventHandler(this.Activi_Change__Setting);
  865. this.numericUpDown_PLL_3_5G_LOW.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  866. this.numericUpDown_PLL_3_5G_LOW.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  867. //
  868. // label32
  869. //
  870. this.label32.AutoSize = true;
  871. this.label32.Location = new System.Drawing.Point(6, 23);
  872. this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  873. this.label32.Name = "label32";
  874. this.label32.Size = new System.Drawing.Size(90, 12);
  875. this.label32.TabIndex = 0;
  876. this.label32.Text = "PLL_3.5G_LOW";
  877. //
  878. // label33
  879. //
  880. this.label33.AutoSize = true;
  881. this.label33.Location = new System.Drawing.Point(6, 53);
  882. this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  883. this.label33.Name = "label33";
  884. this.label33.Size = new System.Drawing.Size(92, 12);
  885. this.label33.TabIndex = 0;
  886. this.label33.Text = "PLL_3.5G_HIGH";
  887. //
  888. // timer
  889. //
  890. this.timer.Interval = 500;
  891. this.timer.Tick += new System.EventHandler(this.timer_Tick);
  892. //
  893. // groupBox12
  894. //
  895. this.groupBox12.Controls.Add(this.pictureBox_R_TX);
  896. this.groupBox12.Controls.Add(this.pictureBox_G_TX);
  897. this.groupBox12.Controls.Add(this.pictureBox_R_RX);
  898. this.groupBox12.Controls.Add(this.pictureBox_G_RX);
  899. this.groupBox12.Location = new System.Drawing.Point(11, 12);
  900. this.groupBox12.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  901. this.groupBox12.Name = "groupBox12";
  902. this.groupBox12.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  903. this.groupBox12.Size = new System.Drawing.Size(206, 66);
  904. this.groupBox12.TabIndex = 103;
  905. this.groupBox12.TabStop = false;
  906. this.groupBox12.Text = "DATA Status";
  907. this.groupBox12.Click += new System.EventHandler(this.Cusor_DeFocus);
  908. //
  909. // pictureBox_R_TX
  910. //
  911. this.pictureBox_R_TX.Image = global::Basic_Terminal.Properties.Resources.TX_Red_Image;
  912. this.pictureBox_R_TX.Location = new System.Drawing.Point(28, 20);
  913. this.pictureBox_R_TX.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  914. this.pictureBox_R_TX.Name = "pictureBox_R_TX";
  915. this.pictureBox_R_TX.Size = new System.Drawing.Size(34, 36);
  916. this.pictureBox_R_TX.TabIndex = 97;
  917. this.pictureBox_R_TX.TabStop = false;
  918. //
  919. // pictureBox_G_TX
  920. //
  921. this.pictureBox_G_TX.Image = global::Basic_Terminal.Properties.Resources.TX_IMAGE;
  922. this.pictureBox_G_TX.Location = new System.Drawing.Point(28, 20);
  923. this.pictureBox_G_TX.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  924. this.pictureBox_G_TX.Name = "pictureBox_G_TX";
  925. this.pictureBox_G_TX.Size = new System.Drawing.Size(34, 36);
  926. this.pictureBox_G_TX.TabIndex = 96;
  927. this.pictureBox_G_TX.TabStop = false;
  928. //
  929. // pictureBox_R_RX
  930. //
  931. this.pictureBox_R_RX.Image = global::Basic_Terminal.Properties.Resources.RX_IMAGE;
  932. this.pictureBox_R_RX.Location = new System.Drawing.Point(143, 20);
  933. this.pictureBox_R_RX.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  934. this.pictureBox_R_RX.Name = "pictureBox_R_RX";
  935. this.pictureBox_R_RX.Size = new System.Drawing.Size(34, 36);
  936. this.pictureBox_R_RX.TabIndex = 96;
  937. this.pictureBox_R_RX.TabStop = false;
  938. //
  939. // pictureBox_G_RX
  940. //
  941. this.pictureBox_G_RX.Image = global::Basic_Terminal.Properties.Resources.RX_GREEN_IMAGE;
  942. this.pictureBox_G_RX.Location = new System.Drawing.Point(143, 20);
  943. this.pictureBox_G_RX.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  944. this.pictureBox_G_RX.Name = "pictureBox_G_RX";
  945. this.pictureBox_G_RX.Size = new System.Drawing.Size(34, 36);
  946. this.pictureBox_G_RX.TabIndex = 98;
  947. this.pictureBox_G_RX.TabStop = false;
  948. //
  949. // pictureBox15
  950. //
  951. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  952. this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  953. this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
  954. this.pictureBox15.Location = new System.Drawing.Point(745, 20);
  955. this.pictureBox15.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  956. this.pictureBox15.Name = "pictureBox15";
  957. this.pictureBox15.Size = new System.Drawing.Size(137, 42);
  958. this.pictureBox15.TabIndex = 99;
  959. this.pictureBox15.TabStop = false;
  960. //
  961. // groupBox_TDD
  962. //
  963. this.groupBox_TDD.Controls.Add(this.label24);
  964. this.groupBox_TDD.Controls.Add(this.label22);
  965. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_OFF);
  966. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_ON);
  967. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_ON);
  968. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_OFF);
  969. this.groupBox_TDD.Location = new System.Drawing.Point(11, 398);
  970. this.groupBox_TDD.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  971. this.groupBox_TDD.Name = "groupBox_TDD";
  972. this.groupBox_TDD.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  973. this.groupBox_TDD.Size = new System.Drawing.Size(206, 85);
  974. this.groupBox_TDD.TabIndex = 107;
  975. this.groupBox_TDD.TabStop = false;
  976. this.groupBox_TDD.Text = "Tdd";
  977. this.groupBox_TDD.Click += new System.EventHandler(this.Cusor_DeFocus);
  978. //
  979. // label24
  980. //
  981. this.label24.AutoSize = true;
  982. this.label24.Location = new System.Drawing.Point(129, 21);
  983. this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  984. this.label24.Name = "label24";
  985. this.label24.Size = new System.Drawing.Size(74, 12);
  986. this.label24.TabIndex = 103;
  987. this.label24.Text = "T-SYNC_UL";
  988. //
  989. // label22
  990. //
  991. this.label22.AutoSize = true;
  992. this.label22.Location = new System.Drawing.Point(15, 21);
  993. this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  994. this.label22.Name = "label22";
  995. this.label22.Size = new System.Drawing.Size(74, 12);
  996. this.label22.TabIndex = 103;
  997. this.label22.Text = "T-SYNC_DL";
  998. //
  999. // pictureBox_TDD_T_SYNC_DL_OFF
  1000. //
  1001. this.pictureBox_TDD_T_SYNC_DL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1002. this.pictureBox_TDD_T_SYNC_DL_OFF.Location = new System.Drawing.Point(27, 33);
  1003. this.pictureBox_TDD_T_SYNC_DL_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1004. this.pictureBox_TDD_T_SYNC_DL_OFF.Name = "pictureBox_TDD_T_SYNC_DL_OFF";
  1005. this.pictureBox_TDD_T_SYNC_DL_OFF.Size = new System.Drawing.Size(34, 36);
  1006. this.pictureBox_TDD_T_SYNC_DL_OFF.TabIndex = 99;
  1007. this.pictureBox_TDD_T_SYNC_DL_OFF.TabStop = false;
  1008. this.pictureBox_TDD_T_SYNC_DL_OFF.Tag = "1";
  1009. this.pictureBox_TDD_T_SYNC_DL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1010. //
  1011. // pictureBox_TDD_T_SYNC_DL_ON
  1012. //
  1013. this.pictureBox_TDD_T_SYNC_DL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1014. this.pictureBox_TDD_T_SYNC_DL_ON.Location = new System.Drawing.Point(27, 33);
  1015. this.pictureBox_TDD_T_SYNC_DL_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1016. this.pictureBox_TDD_T_SYNC_DL_ON.Name = "pictureBox_TDD_T_SYNC_DL_ON";
  1017. this.pictureBox_TDD_T_SYNC_DL_ON.Size = new System.Drawing.Size(34, 36);
  1018. this.pictureBox_TDD_T_SYNC_DL_ON.TabIndex = 96;
  1019. this.pictureBox_TDD_T_SYNC_DL_ON.TabStop = false;
  1020. this.pictureBox_TDD_T_SYNC_DL_ON.Tag = "0";
  1021. this.pictureBox_TDD_T_SYNC_DL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1022. //
  1023. // pictureBox_TDD_T_SYNC_UL_ON
  1024. //
  1025. this.pictureBox_TDD_T_SYNC_UL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1026. this.pictureBox_TDD_T_SYNC_UL_ON.Location = new System.Drawing.Point(142, 33);
  1027. this.pictureBox_TDD_T_SYNC_UL_ON.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1028. this.pictureBox_TDD_T_SYNC_UL_ON.Name = "pictureBox_TDD_T_SYNC_UL_ON";
  1029. this.pictureBox_TDD_T_SYNC_UL_ON.Size = new System.Drawing.Size(34, 36);
  1030. this.pictureBox_TDD_T_SYNC_UL_ON.TabIndex = 96;
  1031. this.pictureBox_TDD_T_SYNC_UL_ON.TabStop = false;
  1032. this.pictureBox_TDD_T_SYNC_UL_ON.Tag = "1";
  1033. this.pictureBox_TDD_T_SYNC_UL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1034. //
  1035. // pictureBox_TDD_T_SYNC_UL_OFF
  1036. //
  1037. this.pictureBox_TDD_T_SYNC_UL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1038. this.pictureBox_TDD_T_SYNC_UL_OFF.Location = new System.Drawing.Point(142, 33);
  1039. this.pictureBox_TDD_T_SYNC_UL_OFF.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1040. this.pictureBox_TDD_T_SYNC_UL_OFF.Name = "pictureBox_TDD_T_SYNC_UL_OFF";
  1041. this.pictureBox_TDD_T_SYNC_UL_OFF.Size = new System.Drawing.Size(34, 36);
  1042. this.pictureBox_TDD_T_SYNC_UL_OFF.TabIndex = 100;
  1043. this.pictureBox_TDD_T_SYNC_UL_OFF.TabStop = false;
  1044. this.pictureBox_TDD_T_SYNC_UL_OFF.Tag = "0";
  1045. this.pictureBox_TDD_T_SYNC_UL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1046. //
  1047. // groupBox3
  1048. //
  1049. this.groupBox3.Controls.Add(this.label_28V_Det);
  1050. this.groupBox3.Controls.Add(this.label3_5GHz_UL_OUT);
  1051. this.groupBox3.Controls.Add(this.label_RFU_Temp);
  1052. this.groupBox3.Controls.Add(this.label3_5GHz_UL_IN);
  1053. this.groupBox3.Controls.Add(this.label3_5GHz_DL_OUT);
  1054. this.groupBox3.Controls.Add(this.label3_5GHz_DL_IN);
  1055. this.groupBox3.Controls.Add(this.label40);
  1056. this.groupBox3.Controls.Add(this.label34);
  1057. this.groupBox3.Controls.Add(this.label39);
  1058. this.groupBox3.Controls.Add(this.label31);
  1059. this.groupBox3.Controls.Add(this.label30);
  1060. this.groupBox3.Controls.Add(this.label29);
  1061. this.groupBox3.Location = new System.Drawing.Point(685, 219);
  1062. this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1063. this.groupBox3.Name = "groupBox3";
  1064. this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1065. this.groupBox3.Size = new System.Drawing.Size(208, 174);
  1066. this.groupBox3.TabIndex = 108;
  1067. this.groupBox3.TabStop = false;
  1068. this.groupBox3.Text = "Voltage";
  1069. this.groupBox3.Click += new System.EventHandler(this.Cusor_DeFocus);
  1070. //
  1071. // label_28V_Det
  1072. //
  1073. this.label_28V_Det.AutoSize = true;
  1074. this.label_28V_Det.Location = new System.Drawing.Point(141, 147);
  1075. this.label_28V_Det.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1076. this.label_28V_Det.Name = "label_28V_Det";
  1077. this.label_28V_Det.Size = new System.Drawing.Size(29, 12);
  1078. this.label_28V_Det.TabIndex = 98;
  1079. this.label_28V_Det.Text = "0.0V";
  1080. //
  1081. // label3_5GHz_UL_OUT
  1082. //
  1083. this.label3_5GHz_UL_OUT.AutoSize = true;
  1084. this.label3_5GHz_UL_OUT.Location = new System.Drawing.Point(138, 90);
  1085. this.label3_5GHz_UL_OUT.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1086. this.label3_5GHz_UL_OUT.Name = "label3_5GHz_UL_OUT";
  1087. this.label3_5GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1088. this.label3_5GHz_UL_OUT.TabIndex = 98;
  1089. this.label3_5GHz_UL_OUT.Text = "0.0V";
  1090. //
  1091. // label_RFU_Temp
  1092. //
  1093. this.label_RFU_Temp.AutoSize = true;
  1094. this.label_RFU_Temp.Location = new System.Drawing.Point(34, 148);
  1095. this.label_RFU_Temp.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1096. this.label_RFU_Temp.Name = "label_RFU_Temp";
  1097. this.label_RFU_Temp.Size = new System.Drawing.Size(29, 12);
  1098. this.label_RFU_Temp.TabIndex = 98;
  1099. this.label_RFU_Temp.Text = "0.0V";
  1100. //
  1101. // label3_5GHz_UL_IN
  1102. //
  1103. this.label3_5GHz_UL_IN.AutoSize = true;
  1104. this.label3_5GHz_UL_IN.Location = new System.Drawing.Point(34, 90);
  1105. this.label3_5GHz_UL_IN.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1106. this.label3_5GHz_UL_IN.Name = "label3_5GHz_UL_IN";
  1107. this.label3_5GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1108. this.label3_5GHz_UL_IN.TabIndex = 98;
  1109. this.label3_5GHz_UL_IN.Text = "0.0V";
  1110. //
  1111. // label3_5GHz_DL_OUT
  1112. //
  1113. this.label3_5GHz_DL_OUT.AutoSize = true;
  1114. this.label3_5GHz_DL_OUT.Location = new System.Drawing.Point(134, 38);
  1115. this.label3_5GHz_DL_OUT.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1116. this.label3_5GHz_DL_OUT.Name = "label3_5GHz_DL_OUT";
  1117. this.label3_5GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1118. this.label3_5GHz_DL_OUT.TabIndex = 98;
  1119. this.label3_5GHz_DL_OUT.Text = "0.0V";
  1120. //
  1121. // label3_5GHz_DL_IN
  1122. //
  1123. this.label3_5GHz_DL_IN.AutoSize = true;
  1124. this.label3_5GHz_DL_IN.Location = new System.Drawing.Point(35, 39);
  1125. this.label3_5GHz_DL_IN.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1126. this.label3_5GHz_DL_IN.Name = "label3_5GHz_DL_IN";
  1127. this.label3_5GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1128. this.label3_5GHz_DL_IN.TabIndex = 98;
  1129. this.label3_5GHz_DL_IN.Text = "0.0V";
  1130. //
  1131. // label40
  1132. //
  1133. this.label40.AutoSize = true;
  1134. this.label40.Location = new System.Drawing.Point(115, 126);
  1135. this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1136. this.label40.Name = "label40";
  1137. this.label40.Size = new System.Drawing.Size(55, 12);
  1138. this.label40.TabIndex = 97;
  1139. this.label40.Text = "28V_DET";
  1140. //
  1141. // label34
  1142. //
  1143. this.label34.AutoSize = true;
  1144. this.label34.Location = new System.Drawing.Point(113, 69);
  1145. this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1146. this.label34.Name = "label34";
  1147. this.label34.Size = new System.Drawing.Size(93, 12);
  1148. this.label34.TabIndex = 97;
  1149. this.label34.Text = "3.5GHz UL OUT";
  1150. //
  1151. // label39
  1152. //
  1153. this.label39.AutoSize = true;
  1154. this.label39.Location = new System.Drawing.Point(16, 126);
  1155. this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1156. this.label39.Name = "label39";
  1157. this.label39.Size = new System.Drawing.Size(67, 12);
  1158. this.label39.TabIndex = 97;
  1159. this.label39.Text = "RFU_Temp";
  1160. //
  1161. // label31
  1162. //
  1163. this.label31.AutoSize = true;
  1164. this.label31.Location = new System.Drawing.Point(11, 69);
  1165. this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1166. this.label31.Name = "label31";
  1167. this.label31.Size = new System.Drawing.Size(80, 12);
  1168. this.label31.TabIndex = 97;
  1169. this.label31.Text = "3.5GHz UL IN";
  1170. //
  1171. // label30
  1172. //
  1173. this.label30.AutoSize = true;
  1174. this.label30.Location = new System.Drawing.Point(113, 17);
  1175. this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1176. this.label30.Name = "label30";
  1177. this.label30.Size = new System.Drawing.Size(93, 12);
  1178. this.label30.TabIndex = 97;
  1179. this.label30.Text = "3.5GHz DL OUT";
  1180. //
  1181. // label29
  1182. //
  1183. this.label29.AutoSize = true;
  1184. this.label29.Location = new System.Drawing.Point(10, 17);
  1185. this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1186. this.label29.Name = "label29";
  1187. this.label29.Size = new System.Drawing.Size(80, 12);
  1188. this.label29.TabIndex = 97;
  1189. this.label29.Text = "3.5GHz DL IN";
  1190. //
  1191. // button_Set
  1192. //
  1193. this.button_Set.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Bold);
  1194. this.button_Set.Location = new System.Drawing.Point(222, 20);
  1195. this.button_Set.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1196. this.button_Set.Name = "button_Set";
  1197. this.button_Set.Size = new System.Drawing.Size(106, 50);
  1198. this.button_Set.TabIndex = 109;
  1199. this.button_Set.Text = "SET";
  1200. this.button_Set.UseVisualStyleBackColor = true;
  1201. this.button_Set.Click += new System.EventHandler(this.Button_Set_Click);
  1202. //
  1203. // button1
  1204. //
  1205. this.button1.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1206. this.button1.Location = new System.Drawing.Point(334, 20);
  1207. this.button1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1208. this.button1.Name = "button1";
  1209. this.button1.Size = new System.Drawing.Size(106, 50);
  1210. this.button1.TabIndex = 110;
  1211. this.button1.Text = "ATTEN ZERO SET";
  1212. this.button1.UseVisualStyleBackColor = true;
  1213. this.button1.Visible = false;
  1214. this.button1.Click += new System.EventHandler(this.button1_Click);
  1215. //
  1216. // label35
  1217. //
  1218. this.label35.AutoSize = true;
  1219. this.label35.Location = new System.Drawing.Point(17, 60);
  1220. this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1221. this.label35.Name = "label35";
  1222. this.label35.Size = new System.Drawing.Size(46, 12);
  1223. this.label35.TabIndex = 100;
  1224. this.label35.Text = "V out E";
  1225. //
  1226. // label27
  1227. //
  1228. this.label27.AutoSize = true;
  1229. this.label27.Location = new System.Drawing.Point(17, 30);
  1230. this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1231. this.label27.Name = "label27";
  1232. this.label27.Size = new System.Drawing.Size(46, 12);
  1233. this.label27.TabIndex = 99;
  1234. this.label27.Text = "V out A";
  1235. //
  1236. // numericUpDown_DAC_VoltCtrl_A
  1237. //
  1238. this.numericUpDown_DAC_VoltCtrl_A.DecimalPlaces = 2;
  1239. this.numericUpDown_DAC_VoltCtrl_A.Increment = new decimal(new int[] {
  1240. 1,
  1241. 0,
  1242. 0,
  1243. 131072});
  1244. this.numericUpDown_DAC_VoltCtrl_A.Location = new System.Drawing.Point(76, 26);
  1245. this.numericUpDown_DAC_VoltCtrl_A.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1246. this.numericUpDown_DAC_VoltCtrl_A.Maximum = new decimal(new int[] {
  1247. 4,
  1248. 0,
  1249. 0,
  1250. 0});
  1251. this.numericUpDown_DAC_VoltCtrl_A.Name = "numericUpDown_DAC_VoltCtrl_A";
  1252. this.numericUpDown_DAC_VoltCtrl_A.Size = new System.Drawing.Size(65, 21);
  1253. this.numericUpDown_DAC_VoltCtrl_A.TabIndex = 102;
  1254. this.numericUpDown_DAC_VoltCtrl_A.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1255. this.numericUpDown_DAC_VoltCtrl_A.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1256. this.numericUpDown_DAC_VoltCtrl_A.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1257. //
  1258. // numericUpDown_DAC_VoltCtrl_E
  1259. //
  1260. this.numericUpDown_DAC_VoltCtrl_E.DecimalPlaces = 2;
  1261. this.numericUpDown_DAC_VoltCtrl_E.Increment = new decimal(new int[] {
  1262. 1,
  1263. 0,
  1264. 0,
  1265. 131072});
  1266. this.numericUpDown_DAC_VoltCtrl_E.Location = new System.Drawing.Point(76, 56);
  1267. this.numericUpDown_DAC_VoltCtrl_E.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1268. this.numericUpDown_DAC_VoltCtrl_E.Maximum = new decimal(new int[] {
  1269. 4,
  1270. 0,
  1271. 0,
  1272. 0});
  1273. this.numericUpDown_DAC_VoltCtrl_E.Name = "numericUpDown_DAC_VoltCtrl_E";
  1274. this.numericUpDown_DAC_VoltCtrl_E.Size = new System.Drawing.Size(65, 21);
  1275. this.numericUpDown_DAC_VoltCtrl_E.TabIndex = 101;
  1276. this.numericUpDown_DAC_VoltCtrl_E.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1277. this.numericUpDown_DAC_VoltCtrl_E.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1278. this.numericUpDown_DAC_VoltCtrl_E.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1279. //
  1280. // groupBox6
  1281. //
  1282. this.groupBox6.Controls.Add(this.label10);
  1283. this.groupBox6.Controls.Add(this.numericUpDown11);
  1284. this.groupBox6.Controls.Add(this.numericUpDown10);
  1285. this.groupBox6.Controls.Add(this.numericUpDown9);
  1286. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_H);
  1287. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_F);
  1288. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_G);
  1289. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_E);
  1290. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_D);
  1291. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_B);
  1292. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_C);
  1293. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_A);
  1294. this.groupBox6.Controls.Add(this.label37);
  1295. this.groupBox6.Controls.Add(this.label12);
  1296. this.groupBox6.Controls.Add(this.label25);
  1297. this.groupBox6.Controls.Add(this.label36);
  1298. this.groupBox6.Controls.Add(this.label38);
  1299. this.groupBox6.Controls.Add(this.label23);
  1300. this.groupBox6.Controls.Add(this.label27);
  1301. this.groupBox6.Controls.Add(this.label35);
  1302. this.groupBox6.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1303. this.groupBox6.Location = new System.Drawing.Point(224, 399);
  1304. this.groupBox6.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1305. this.groupBox6.Name = "groupBox6";
  1306. this.groupBox6.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1307. this.groupBox6.Size = new System.Drawing.Size(669, 84);
  1308. this.groupBox6.TabIndex = 102;
  1309. this.groupBox6.TabStop = false;
  1310. this.groupBox6.Text = "V(Voltage)";
  1311. this.groupBox6.Click += new System.EventHandler(this.Cusor_DeFocus);
  1312. //
  1313. // label10
  1314. //
  1315. this.label10.AutoSize = true;
  1316. this.label10.Location = new System.Drawing.Point(183, 60);
  1317. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1318. this.label10.Name = "label10";
  1319. this.label10.Size = new System.Drawing.Size(45, 12);
  1320. this.label10.TabIndex = 103;
  1321. this.label10.Text = "V out F";
  1322. //
  1323. // numericUpDown11
  1324. //
  1325. this.numericUpDown11.DecimalPlaces = 1;
  1326. this.numericUpDown11.Increment = new decimal(new int[] {
  1327. 1,
  1328. 0,
  1329. 0,
  1330. 65536});
  1331. this.numericUpDown11.Location = new System.Drawing.Point(1442, 69);
  1332. this.numericUpDown11.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1333. this.numericUpDown11.Maximum = new decimal(new int[] {
  1334. 3000,
  1335. 0,
  1336. 0,
  1337. 0});
  1338. this.numericUpDown11.Name = "numericUpDown11";
  1339. this.numericUpDown11.Size = new System.Drawing.Size(65, 21);
  1340. this.numericUpDown11.TabIndex = 101;
  1341. //
  1342. // numericUpDown10
  1343. //
  1344. this.numericUpDown10.DecimalPlaces = 1;
  1345. this.numericUpDown10.Increment = new decimal(new int[] {
  1346. 1,
  1347. 0,
  1348. 0,
  1349. 65536});
  1350. this.numericUpDown10.Location = new System.Drawing.Point(1217, 69);
  1351. this.numericUpDown10.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1352. this.numericUpDown10.Maximum = new decimal(new int[] {
  1353. 3000,
  1354. 0,
  1355. 0,
  1356. 0});
  1357. this.numericUpDown10.Name = "numericUpDown10";
  1358. this.numericUpDown10.Size = new System.Drawing.Size(65, 21);
  1359. this.numericUpDown10.TabIndex = 101;
  1360. //
  1361. // numericUpDown9
  1362. //
  1363. this.numericUpDown9.DecimalPlaces = 1;
  1364. this.numericUpDown9.Increment = new decimal(new int[] {
  1365. 1,
  1366. 0,
  1367. 0,
  1368. 65536});
  1369. this.numericUpDown9.Location = new System.Drawing.Point(994, 69);
  1370. this.numericUpDown9.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1371. this.numericUpDown9.Maximum = new decimal(new int[] {
  1372. 3000,
  1373. 0,
  1374. 0,
  1375. 0});
  1376. this.numericUpDown9.Name = "numericUpDown9";
  1377. this.numericUpDown9.Size = new System.Drawing.Size(65, 21);
  1378. this.numericUpDown9.TabIndex = 101;
  1379. //
  1380. // numericUpDown_DAC_VoltCtrl_H
  1381. //
  1382. this.numericUpDown_DAC_VoltCtrl_H.DecimalPlaces = 2;
  1383. this.numericUpDown_DAC_VoltCtrl_H.Increment = new decimal(new int[] {
  1384. 1,
  1385. 0,
  1386. 0,
  1387. 131072});
  1388. this.numericUpDown_DAC_VoltCtrl_H.Location = new System.Drawing.Point(587, 56);
  1389. this.numericUpDown_DAC_VoltCtrl_H.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1390. this.numericUpDown_DAC_VoltCtrl_H.Maximum = new decimal(new int[] {
  1391. 4,
  1392. 0,
  1393. 0,
  1394. 0});
  1395. this.numericUpDown_DAC_VoltCtrl_H.Name = "numericUpDown_DAC_VoltCtrl_H";
  1396. this.numericUpDown_DAC_VoltCtrl_H.Size = new System.Drawing.Size(65, 21);
  1397. this.numericUpDown_DAC_VoltCtrl_H.TabIndex = 101;
  1398. this.numericUpDown_DAC_VoltCtrl_H.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1399. this.numericUpDown_DAC_VoltCtrl_H.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1400. this.numericUpDown_DAC_VoltCtrl_H.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1401. //
  1402. // numericUpDown_DAC_VoltCtrl_F
  1403. //
  1404. this.numericUpDown_DAC_VoltCtrl_F.DecimalPlaces = 2;
  1405. this.numericUpDown_DAC_VoltCtrl_F.Increment = new decimal(new int[] {
  1406. 1,
  1407. 0,
  1408. 0,
  1409. 131072});
  1410. this.numericUpDown_DAC_VoltCtrl_F.Location = new System.Drawing.Point(242, 56);
  1411. this.numericUpDown_DAC_VoltCtrl_F.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1412. this.numericUpDown_DAC_VoltCtrl_F.Maximum = new decimal(new int[] {
  1413. 4,
  1414. 0,
  1415. 0,
  1416. 0});
  1417. this.numericUpDown_DAC_VoltCtrl_F.Name = "numericUpDown_DAC_VoltCtrl_F";
  1418. this.numericUpDown_DAC_VoltCtrl_F.Size = new System.Drawing.Size(65, 21);
  1419. this.numericUpDown_DAC_VoltCtrl_F.TabIndex = 101;
  1420. this.numericUpDown_DAC_VoltCtrl_F.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1421. this.numericUpDown_DAC_VoltCtrl_F.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1422. this.numericUpDown_DAC_VoltCtrl_F.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1423. //
  1424. // numericUpDown_DAC_VoltCtrl_G
  1425. //
  1426. this.numericUpDown_DAC_VoltCtrl_G.DecimalPlaces = 2;
  1427. this.numericUpDown_DAC_VoltCtrl_G.Increment = new decimal(new int[] {
  1428. 1,
  1429. 0,
  1430. 0,
  1431. 131072});
  1432. this.numericUpDown_DAC_VoltCtrl_G.Location = new System.Drawing.Point(414, 56);
  1433. this.numericUpDown_DAC_VoltCtrl_G.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1434. this.numericUpDown_DAC_VoltCtrl_G.Maximum = new decimal(new int[] {
  1435. 4,
  1436. 0,
  1437. 0,
  1438. 0});
  1439. this.numericUpDown_DAC_VoltCtrl_G.Name = "numericUpDown_DAC_VoltCtrl_G";
  1440. this.numericUpDown_DAC_VoltCtrl_G.Size = new System.Drawing.Size(65, 21);
  1441. this.numericUpDown_DAC_VoltCtrl_G.TabIndex = 101;
  1442. this.numericUpDown_DAC_VoltCtrl_G.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1443. this.numericUpDown_DAC_VoltCtrl_G.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1444. this.numericUpDown_DAC_VoltCtrl_G.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1445. //
  1446. // numericUpDown_DAC_VoltCtrl_D
  1447. //
  1448. this.numericUpDown_DAC_VoltCtrl_D.DecimalPlaces = 2;
  1449. this.numericUpDown_DAC_VoltCtrl_D.Increment = new decimal(new int[] {
  1450. 1,
  1451. 0,
  1452. 0,
  1453. 131072});
  1454. this.numericUpDown_DAC_VoltCtrl_D.Location = new System.Drawing.Point(587, 26);
  1455. this.numericUpDown_DAC_VoltCtrl_D.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1456. this.numericUpDown_DAC_VoltCtrl_D.Maximum = new decimal(new int[] {
  1457. 4,
  1458. 0,
  1459. 0,
  1460. 0});
  1461. this.numericUpDown_DAC_VoltCtrl_D.Name = "numericUpDown_DAC_VoltCtrl_D";
  1462. this.numericUpDown_DAC_VoltCtrl_D.Size = new System.Drawing.Size(65, 21);
  1463. this.numericUpDown_DAC_VoltCtrl_D.TabIndex = 102;
  1464. this.numericUpDown_DAC_VoltCtrl_D.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1465. this.numericUpDown_DAC_VoltCtrl_D.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1466. this.numericUpDown_DAC_VoltCtrl_D.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1467. //
  1468. // numericUpDown_DAC_VoltCtrl_B
  1469. //
  1470. this.numericUpDown_DAC_VoltCtrl_B.DecimalPlaces = 2;
  1471. this.numericUpDown_DAC_VoltCtrl_B.Increment = new decimal(new int[] {
  1472. 1,
  1473. 0,
  1474. 0,
  1475. 131072});
  1476. this.numericUpDown_DAC_VoltCtrl_B.Location = new System.Drawing.Point(242, 26);
  1477. this.numericUpDown_DAC_VoltCtrl_B.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1478. this.numericUpDown_DAC_VoltCtrl_B.Maximum = new decimal(new int[] {
  1479. 4,
  1480. 0,
  1481. 0,
  1482. 0});
  1483. this.numericUpDown_DAC_VoltCtrl_B.Name = "numericUpDown_DAC_VoltCtrl_B";
  1484. this.numericUpDown_DAC_VoltCtrl_B.Size = new System.Drawing.Size(65, 21);
  1485. this.numericUpDown_DAC_VoltCtrl_B.TabIndex = 102;
  1486. this.numericUpDown_DAC_VoltCtrl_B.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1487. this.numericUpDown_DAC_VoltCtrl_B.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1488. this.numericUpDown_DAC_VoltCtrl_B.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1489. //
  1490. // numericUpDown_DAC_VoltCtrl_C
  1491. //
  1492. this.numericUpDown_DAC_VoltCtrl_C.DecimalPlaces = 2;
  1493. this.numericUpDown_DAC_VoltCtrl_C.Increment = new decimal(new int[] {
  1494. 1,
  1495. 0,
  1496. 0,
  1497. 131072});
  1498. this.numericUpDown_DAC_VoltCtrl_C.Location = new System.Drawing.Point(414, 26);
  1499. this.numericUpDown_DAC_VoltCtrl_C.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1500. this.numericUpDown_DAC_VoltCtrl_C.Maximum = new decimal(new int[] {
  1501. 4,
  1502. 0,
  1503. 0,
  1504. 0});
  1505. this.numericUpDown_DAC_VoltCtrl_C.Name = "numericUpDown_DAC_VoltCtrl_C";
  1506. this.numericUpDown_DAC_VoltCtrl_C.Size = new System.Drawing.Size(65, 21);
  1507. this.numericUpDown_DAC_VoltCtrl_C.TabIndex = 102;
  1508. this.numericUpDown_DAC_VoltCtrl_C.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1509. this.numericUpDown_DAC_VoltCtrl_C.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1510. this.numericUpDown_DAC_VoltCtrl_C.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1511. //
  1512. // label37
  1513. //
  1514. this.label37.AutoSize = true;
  1515. this.label37.Location = new System.Drawing.Point(529, 30);
  1516. this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1517. this.label37.Name = "label37";
  1518. this.label37.Size = new System.Drawing.Size(46, 12);
  1519. this.label37.TabIndex = 99;
  1520. this.label37.Text = "V out D";
  1521. //
  1522. // label12
  1523. //
  1524. this.label12.AutoSize = true;
  1525. this.label12.Location = new System.Drawing.Point(183, 30);
  1526. this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1527. this.label12.Name = "label12";
  1528. this.label12.Size = new System.Drawing.Size(46, 12);
  1529. this.label12.TabIndex = 99;
  1530. this.label12.Text = "V out B";
  1531. //
  1532. // label25
  1533. //
  1534. this.label25.AutoSize = true;
  1535. this.label25.Location = new System.Drawing.Point(354, 30);
  1536. this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1537. this.label25.Name = "label25";
  1538. this.label25.Size = new System.Drawing.Size(47, 12);
  1539. this.label25.TabIndex = 99;
  1540. this.label25.Text = "V out C";
  1541. //
  1542. // label36
  1543. //
  1544. this.label36.AutoSize = true;
  1545. this.label36.Location = new System.Drawing.Point(1088, 82);
  1546. this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1547. this.label36.Name = "label36";
  1548. this.label36.Size = new System.Drawing.Size(46, 12);
  1549. this.label36.TabIndex = 100;
  1550. this.label36.Text = "A out E";
  1551. //
  1552. // label38
  1553. //
  1554. this.label38.AutoSize = true;
  1555. this.label38.Location = new System.Drawing.Point(529, 60);
  1556. this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1557. this.label38.Name = "label38";
  1558. this.label38.Size = new System.Drawing.Size(46, 12);
  1559. this.label38.TabIndex = 100;
  1560. this.label38.Text = "V out H";
  1561. //
  1562. // label23
  1563. //
  1564. this.label23.AutoSize = true;
  1565. this.label23.Location = new System.Drawing.Point(354, 60);
  1566. this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1567. this.label23.Name = "label23";
  1568. this.label23.Size = new System.Drawing.Size(47, 12);
  1569. this.label23.TabIndex = 100;
  1570. this.label23.Text = "V out G";
  1571. //
  1572. // button_Save
  1573. //
  1574. this.button_Save.Font = new System.Drawing.Font("굴림", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(20)));
  1575. this.button_Save.Location = new System.Drawing.Point(11, 306);
  1576. this.button_Save.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1577. this.button_Save.Name = "button_Save";
  1578. this.button_Save.Size = new System.Drawing.Size(206, 87);
  1579. this.button_Save.TabIndex = 111;
  1580. this.button_Save.Text = "SAVE";
  1581. this.button_Save.UseVisualStyleBackColor = true;
  1582. this.button_Save.Click += new System.EventHandler(this.button_Save_Click);
  1583. //
  1584. // label_Build
  1585. //
  1586. this.label_Build.AutoSize = true;
  1587. this.label_Build.Location = new System.Drawing.Point(725, 486);
  1588. this.label_Build.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1589. this.label_Build.Name = "label_Build";
  1590. this.label_Build.Size = new System.Drawing.Size(166, 12);
  1591. this.label_Build.TabIndex = 112;
  1592. this.label_Build.Text = "Ver.yyyy/MM/dd hh:mm:ss";
  1593. //
  1594. // Main_Form
  1595. //
  1596. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  1597. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  1598. this.AutoScroll = true;
  1599. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  1600. this.ClientSize = new System.Drawing.Size(928, 517);
  1601. this.Controls.Add(this.label_Build);
  1602. this.Controls.Add(this.button_Save);
  1603. this.Controls.Add(this.button1);
  1604. this.Controls.Add(this.button_Set);
  1605. this.Controls.Add(this.groupBox3);
  1606. this.Controls.Add(this.groupBox_TDD);
  1607. this.Controls.Add(this.groupBox12);
  1608. this.Controls.Add(this.groupBox6);
  1609. this.Controls.Add(this.groupBox10);
  1610. this.Controls.Add(this.pictureBox15);
  1611. this.Controls.Add(this.label80);
  1612. this.Controls.Add(this.label79);
  1613. this.Controls.Add(this.groupBox17);
  1614. this.Controls.Add(this.groupBox8);
  1615. this.Controls.Add(this.groupBox9);
  1616. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1617. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1618. this.Name = "Main_Form";
  1619. this.Text = "PATH_EN_1.8G_DL";
  1620. this.Load += new System.EventHandler(this.Main_Form_Load);
  1621. this.groupBox9.ResumeLayout(false);
  1622. this.groupBox9.PerformLayout();
  1623. this.groupBox8.ResumeLayout(false);
  1624. this.groupBox8.PerformLayout();
  1625. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_HIGH2)).EndInit();
  1626. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).EndInit();
  1627. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).EndInit();
  1628. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_LOW2)).EndInit();
  1629. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_LOW1)).EndInit();
  1630. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_HIGH1)).EndInit();
  1631. this.groupBox17.ResumeLayout(false);
  1632. this.groupBox17.PerformLayout();
  1633. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).EndInit();
  1634. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).EndInit();
  1635. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).EndInit();
  1636. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).EndInit();
  1637. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).EndInit();
  1638. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).EndInit();
  1639. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).EndInit();
  1640. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).EndInit();
  1641. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).EndInit();
  1642. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).EndInit();
  1643. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).EndInit();
  1644. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).EndInit();
  1645. this.groupBox10.ResumeLayout(false);
  1646. this.groupBox11.ResumeLayout(false);
  1647. this.groupBox11.PerformLayout();
  1648. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_HIGH)).EndInit();
  1649. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_LOW)).EndInit();
  1650. this.groupBox12.ResumeLayout(false);
  1651. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
  1652. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
  1653. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
  1654. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
  1655. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  1656. this.groupBox_TDD.ResumeLayout(false);
  1657. this.groupBox_TDD.PerformLayout();
  1658. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).EndInit();
  1659. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).EndInit();
  1660. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).EndInit();
  1661. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).EndInit();
  1662. this.groupBox3.ResumeLayout(false);
  1663. this.groupBox3.PerformLayout();
  1664. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).EndInit();
  1665. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).EndInit();
  1666. this.groupBox6.ResumeLayout(false);
  1667. this.groupBox6.PerformLayout();
  1668. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).EndInit();
  1669. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).EndInit();
  1670. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).EndInit();
  1671. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).EndInit();
  1672. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).EndInit();
  1673. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).EndInit();
  1674. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).EndInit();
  1675. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).EndInit();
  1676. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).EndInit();
  1677. this.ResumeLayout(false);
  1678. this.PerformLayout();
  1679. }
  1680. #endregion
  1681. private System.Windows.Forms.GroupBox groupBox9;
  1682. private System.Windows.Forms.Button button3;
  1683. private System.Windows.Forms.Button button_terminal;
  1684. private System.Windows.Forms.CheckBox setcheck_checkBox;
  1685. private System.Windows.Forms.Label cmCom_Port;
  1686. private System.Windows.Forms.Button button_PortOpen;
  1687. private System.Windows.Forms.Label cmBaudRate;
  1688. private System.Windows.Forms.ComboBox comboBox_baudrate;
  1689. public System.Windows.Forms.ComboBox comboBox_Port;
  1690. private System.Windows.Forms.GroupBox groupBox8;
  1691. private System.Windows.Forms.Label label26;
  1692. private System.Windows.Forms.Label label28;
  1693. private System.Windows.Forms.GroupBox groupBox17;
  1694. private System.Windows.Forms.Label label78;
  1695. private System.Windows.Forms.Label label77;
  1696. private System.Windows.Forms.Label label76;
  1697. private System.Windows.Forms.Label label75;
  1698. private System.Windows.Forms.Label label79;
  1699. private System.Windows.Forms.PictureBox pictureBox15;
  1700. private System.Windows.Forms.Label label80;
  1701. private System.Windows.Forms.GroupBox groupBox10;
  1702. private System.Windows.Forms.GroupBox groupBox11;
  1703. private System.Windows.Forms.Label label32;
  1704. private System.Windows.Forms.Label label33;
  1705. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_HIGH1;
  1706. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_LOW1;
  1707. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_HIGH;
  1708. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_LOW;
  1709. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_OFF;
  1710. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_OFF;
  1711. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_OFF;
  1712. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_OFF;
  1713. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_ON;
  1714. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_ON;
  1715. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_ON;
  1716. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_ON;
  1717. private System.Windows.Forms.GroupBox groupBox12;
  1718. public System.Windows.Forms.PictureBox pictureBox_G_TX;
  1719. public System.Windows.Forms.PictureBox pictureBox_R_RX;
  1720. public System.Windows.Forms.PictureBox pictureBox_R_TX;
  1721. public System.Windows.Forms.PictureBox pictureBox_G_RX;
  1722. private System.Windows.Forms.Label label74;
  1723. private System.Windows.Forms.Label label73;
  1724. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_ON;
  1725. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_OFF;
  1726. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_ON;
  1727. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_OFF;
  1728. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM2;
  1729. private System.Windows.Forms.Label label21;
  1730. private System.Windows.Forms.GroupBox groupBox_TDD;
  1731. private System.Windows.Forms.Label label24;
  1732. private System.Windows.Forms.Label label22;
  1733. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_OFF;
  1734. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_ON;
  1735. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_ON;
  1736. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_OFF;
  1737. private System.Windows.Forms.GroupBox groupBox3;
  1738. private System.Windows.Forms.Label label34;
  1739. private System.Windows.Forms.Label label31;
  1740. private System.Windows.Forms.Label label30;
  1741. private System.Windows.Forms.Label label29;
  1742. private System.Windows.Forms.Button button_Set;
  1743. private System.Windows.Forms.Label label40;
  1744. private System.Windows.Forms.Label label39;
  1745. public System.Windows.Forms.Label label3_5GHz_UL_OUT;
  1746. public System.Windows.Forms.Label label3_5GHz_UL_IN;
  1747. public System.Windows.Forms.Label label3_5GHz_DL_OUT;
  1748. public System.Windows.Forms.Label label3_5GHz_DL_IN;
  1749. public System.Windows.Forms.Label label_28V_Det;
  1750. public System.Windows.Forms.Label label_RFU_Temp;
  1751. private System.Windows.Forms.Button button1;
  1752. private System.Windows.Forms.Label label35;
  1753. private System.Windows.Forms.Label label27;
  1754. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_A;
  1755. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_E;
  1756. private System.Windows.Forms.GroupBox groupBox6;
  1757. private System.Windows.Forms.Label label10;
  1758. public System.Windows.Forms.NumericUpDown numericUpDown11;
  1759. public System.Windows.Forms.NumericUpDown numericUpDown10;
  1760. public System.Windows.Forms.NumericUpDown numericUpDown9;
  1761. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_H;
  1762. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_F;
  1763. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_G;
  1764. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_D;
  1765. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_B;
  1766. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_C;
  1767. private System.Windows.Forms.Label label37;
  1768. private System.Windows.Forms.Label label12;
  1769. private System.Windows.Forms.Label label25;
  1770. private System.Windows.Forms.Label label36;
  1771. private System.Windows.Forms.Label label38;
  1772. private System.Windows.Forms.Label label23;
  1773. private System.Windows.Forms.Button button_Save;
  1774. public System.Windows.Forms.Timer timer;
  1775. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_HIGH2;
  1776. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_LOW2;
  1777. private System.Windows.Forms.Label label20;
  1778. private System.Windows.Forms.Label label41;
  1779. private System.Windows.Forms.Label label_Build;
  1780. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM1;
  1781. private System.Windows.Forms.Label label19;
  1782. }
  1783. }