Main_Form.Designer.cs 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133
  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.Ascii_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.groupBox3 = new System.Windows.Forms.GroupBox();
  40. this.label68 = new System.Windows.Forms.Label();
  41. this.label56 = new System.Windows.Forms.Label();
  42. this.label67 = new System.Windows.Forms.Label();
  43. this.label12 = new System.Windows.Forms.Label();
  44. this.label66 = new System.Windows.Forms.Label();
  45. this.label55 = new System.Windows.Forms.Label();
  46. this.label65 = new System.Windows.Forms.Label();
  47. this.label11 = new System.Windows.Forms.Label();
  48. this.label64 = new System.Windows.Forms.Label();
  49. this.label54 = new System.Windows.Forms.Label();
  50. this.label63 = new System.Windows.Forms.Label();
  51. this.label10 = new System.Windows.Forms.Label();
  52. this.label62 = new System.Windows.Forms.Label();
  53. this.label53 = new System.Windows.Forms.Label();
  54. this.label61 = new System.Windows.Forms.Label();
  55. this.label1 = new System.Windows.Forms.Label();
  56. this.label60 = new System.Windows.Forms.Label();
  57. this.label52 = new System.Windows.Forms.Label();
  58. this.label59 = new System.Windows.Forms.Label();
  59. this.label8 = new System.Windows.Forms.Label();
  60. this.label58 = new System.Windows.Forms.Label();
  61. this.label51 = new System.Windows.Forms.Label();
  62. this.label57 = new System.Windows.Forms.Label();
  63. this.label9 = new System.Windows.Forms.Label();
  64. this.groupBox8 = new System.Windows.Forms.GroupBox();
  65. this.groupBox6 = new System.Windows.Forms.GroupBox();
  66. this.numericUpDown_ATT_3_5G_COM3 = new System.Windows.Forms.NumericUpDown();
  67. this.numericUpDown_ATT_3_5G_COM2 = new System.Windows.Forms.NumericUpDown();
  68. this.numericUpDown_ATT_3_5G_COM1 = new System.Windows.Forms.NumericUpDown();
  69. this.label19 = new System.Windows.Forms.Label();
  70. this.label20 = new System.Windows.Forms.Label();
  71. this.label21 = new System.Windows.Forms.Label();
  72. this.groupBox7 = new System.Windows.Forms.GroupBox();
  73. this.numericUpDown_ATT_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  74. this.numericUpDown_ATT_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  75. this.label26 = new System.Windows.Forms.Label();
  76. this.label28 = new System.Windows.Forms.Label();
  77. this.groupBox5 = new System.Windows.Forms.GroupBox();
  78. this.numericUpDown_ATT_2_1G_UL4 = new System.Windows.Forms.NumericUpDown();
  79. this.numericUpDown_ATT_2_1G_UL2 = new System.Windows.Forms.NumericUpDown();
  80. this.numericUpDown_ATT_2_1G_UL3 = new System.Windows.Forms.NumericUpDown();
  81. this.numericUpDown_ATT_2_1G_UL1 = new System.Windows.Forms.NumericUpDown();
  82. this.label15 = new System.Windows.Forms.Label();
  83. this.label16 = new System.Windows.Forms.Label();
  84. this.label17 = new System.Windows.Forms.Label();
  85. this.label18 = new System.Windows.Forms.Label();
  86. this.groupBox2 = new System.Windows.Forms.GroupBox();
  87. this.numericUpDown_ATT_1_8G_UL4 = new System.Windows.Forms.NumericUpDown();
  88. this.numericUpDown_ATT_1_8G_UL2 = new System.Windows.Forms.NumericUpDown();
  89. this.numericUpDown_ATT_1_8G_UL3 = new System.Windows.Forms.NumericUpDown();
  90. this.numericUpDown_ATT_1_8G_UL1 = new System.Windows.Forms.NumericUpDown();
  91. this.label7 = new System.Windows.Forms.Label();
  92. this.label6 = new System.Windows.Forms.Label();
  93. this.label4 = new System.Windows.Forms.Label();
  94. this.label5 = new System.Windows.Forms.Label();
  95. this.groupBox4 = new System.Windows.Forms.GroupBox();
  96. this.numericUpDown_ATT_2_1G_DL2 = new System.Windows.Forms.NumericUpDown();
  97. this.numericUpDown_ATT_2_1G_DL1 = new System.Windows.Forms.NumericUpDown();
  98. this.label13 = new System.Windows.Forms.Label();
  99. this.label14 = new System.Windows.Forms.Label();
  100. this.groupBox1 = new System.Windows.Forms.GroupBox();
  101. this.numericUpDown_ATT_1_8G_DL2 = new System.Windows.Forms.NumericUpDown();
  102. this.numericUpDown_ATT_1_8G_DL1 = new System.Windows.Forms.NumericUpDown();
  103. this.label3 = new System.Windows.Forms.Label();
  104. this.label2 = new System.Windows.Forms.Label();
  105. this.groupBox17 = new System.Windows.Forms.GroupBox();
  106. this.label78 = new System.Windows.Forms.Label();
  107. this.label77 = new System.Windows.Forms.Label();
  108. this.label76 = new System.Windows.Forms.Label();
  109. this.label75 = new System.Windows.Forms.Label();
  110. this.label74 = new System.Windows.Forms.Label();
  111. this.label73 = new System.Windows.Forms.Label();
  112. this.label72 = new System.Windows.Forms.Label();
  113. this.label71 = new System.Windows.Forms.Label();
  114. this.label70 = new System.Windows.Forms.Label();
  115. this.label69 = new System.Windows.Forms.Label();
  116. this.pictureBox_PATH_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  117. this.pictureBox_PATH_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  118. this.pictureBox_PATH_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  119. this.pictureBox_PATH_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  120. this.pictureBox_PLL_ON_OFF_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  121. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  122. this.pictureBox_PLL_ON_OFF_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  123. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  124. this.pictureBox_PATH_3_5G_UL_ON = new System.Windows.Forms.PictureBox();
  125. this.pictureBox_PATH_3_5G_UL_OFF = new System.Windows.Forms.PictureBox();
  126. this.pictureBox_PATH_3_5G_DL_ON = new System.Windows.Forms.PictureBox();
  127. this.pictureBox_PATH_3_5G_DL_OFF = new System.Windows.Forms.PictureBox();
  128. this.pictureBox_PATH_2_1G_UL_ON = new System.Windows.Forms.PictureBox();
  129. this.pictureBox_PATH_2_1G_UL_OFF = new System.Windows.Forms.PictureBox();
  130. this.pictureBox_PATH_2_1G_DL_ON = new System.Windows.Forms.PictureBox();
  131. this.pictureBox_PATH_2_1G_DL_OFF = new System.Windows.Forms.PictureBox();
  132. this.pictureBox_PATH_1_8G_UL_ON = new System.Windows.Forms.PictureBox();
  133. this.pictureBox_PATH_1_8G_UL_OFF = new System.Windows.Forms.PictureBox();
  134. this.pictureBox_PATH_1_8G_DL_ON = new System.Windows.Forms.PictureBox();
  135. this.pictureBox_PATH_1_8G_DL_OFF = new System.Windows.Forms.PictureBox();
  136. this.label79 = new System.Windows.Forms.Label();
  137. this.label80 = new System.Windows.Forms.Label();
  138. this.button_Set = new System.Windows.Forms.Button();
  139. this.groupBox10 = new System.Windows.Forms.GroupBox();
  140. this.groupBox11 = new System.Windows.Forms.GroupBox();
  141. this.numericUpDown_PLL_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  142. this.numericUpDown_PLL_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  143. this.label32 = new System.Windows.Forms.Label();
  144. this.label33 = new System.Windows.Forms.Label();
  145. this.groupBox15 = new System.Windows.Forms.GroupBox();
  146. this.numericUpDown_PLL_2_1G_UL = new System.Windows.Forms.NumericUpDown();
  147. this.numericUpDown_PLL_2_1G_DL = new System.Windows.Forms.NumericUpDown();
  148. this.label47 = new System.Windows.Forms.Label();
  149. this.label48 = new System.Windows.Forms.Label();
  150. this.groupBox16 = new System.Windows.Forms.GroupBox();
  151. this.numericUpDown_PLL_1_8G_UL = new System.Windows.Forms.NumericUpDown();
  152. this.numericUpDown_PLL_1_8G_DL = new System.Windows.Forms.NumericUpDown();
  153. this.label49 = new System.Windows.Forms.Label();
  154. this.label50 = new System.Windows.Forms.Label();
  155. this.timer = new System.Windows.Forms.Timer(this.components);
  156. this.groupBox12 = new System.Windows.Forms.GroupBox();
  157. this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
  158. this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
  159. this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
  160. this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
  161. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  162. this.groupBox_TDD = new System.Windows.Forms.GroupBox();
  163. this.label24 = new System.Windows.Forms.Label();
  164. this.label22 = new System.Windows.Forms.Label();
  165. this.pictureBox_TDD_T_SYNC_DL_OFF = new System.Windows.Forms.PictureBox();
  166. this.pictureBox_TDD_T_SYNC_UL_OFF = new System.Windows.Forms.PictureBox();
  167. this.pictureBox_TDD_T_SYNC_DL_ON = new System.Windows.Forms.PictureBox();
  168. this.pictureBox_TDD_T_SYNC_UL_ON = new System.Windows.Forms.PictureBox();
  169. this.groupBox9.SuspendLayout();
  170. this.groupBox3.SuspendLayout();
  171. this.groupBox8.SuspendLayout();
  172. this.groupBox6.SuspendLayout();
  173. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).BeginInit();
  174. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).BeginInit();
  175. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).BeginInit();
  176. this.groupBox7.SuspendLayout();
  177. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).BeginInit();
  178. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).BeginInit();
  179. this.groupBox5.SuspendLayout();
  180. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).BeginInit();
  181. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).BeginInit();
  182. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).BeginInit();
  183. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).BeginInit();
  184. this.groupBox2.SuspendLayout();
  185. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).BeginInit();
  186. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).BeginInit();
  187. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).BeginInit();
  188. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).BeginInit();
  189. this.groupBox4.SuspendLayout();
  190. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).BeginInit();
  191. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).BeginInit();
  192. this.groupBox1.SuspendLayout();
  193. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).BeginInit();
  194. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).BeginInit();
  195. this.groupBox17.SuspendLayout();
  196. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).BeginInit();
  197. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).BeginInit();
  198. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).BeginInit();
  199. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).BeginInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).BeginInit();
  201. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).BeginInit();
  202. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).BeginInit();
  203. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).BeginInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).BeginInit();
  206. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).BeginInit();
  207. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).BeginInit();
  208. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).BeginInit();
  209. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).BeginInit();
  212. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).BeginInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).BeginInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).BeginInit();
  215. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).BeginInit();
  216. this.groupBox10.SuspendLayout();
  217. this.groupBox11.SuspendLayout();
  218. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).BeginInit();
  219. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).BeginInit();
  220. this.groupBox15.SuspendLayout();
  221. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).BeginInit();
  222. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).BeginInit();
  223. this.groupBox16.SuspendLayout();
  224. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).BeginInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).BeginInit();
  226. this.groupBox12.SuspendLayout();
  227. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
  228. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
  229. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
  230. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
  231. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  232. this.groupBox_TDD.SuspendLayout();
  233. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).BeginInit();
  234. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).BeginInit();
  235. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).BeginInit();
  236. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).BeginInit();
  237. this.SuspendLayout();
  238. //
  239. // groupBox9
  240. //
  241. this.groupBox9.Controls.Add(this.button3);
  242. this.groupBox9.Controls.Add(this.button_terminal);
  243. this.groupBox9.Controls.Add(this.Ascii_checkBox);
  244. this.groupBox9.Controls.Add(this.cmCom_Port);
  245. this.groupBox9.Controls.Add(this.button_PortOpen);
  246. this.groupBox9.Controls.Add(this.comboBox_Port);
  247. this.groupBox9.Controls.Add(this.cmBaudRate);
  248. this.groupBox9.Controls.Add(this.comboBox_baudrate);
  249. this.groupBox9.Location = new System.Drawing.Point(12, 77);
  250. this.groupBox9.Name = "groupBox9";
  251. this.groupBox9.Size = new System.Drawing.Size(225, 223);
  252. this.groupBox9.TabIndex = 82;
  253. this.groupBox9.TabStop = false;
  254. this.groupBox9.Text = "Connection";
  255. //
  256. // button3
  257. //
  258. this.button3.Location = new System.Drawing.Point(14, 171);
  259. this.button3.Name = "button3";
  260. this.button3.Size = new System.Drawing.Size(197, 34);
  261. this.button3.TabIndex = 93;
  262. this.button3.Text = "Firmware Update";
  263. this.button3.UseVisualStyleBackColor = true;
  264. this.button3.Click += new System.EventHandler(this.Firmware_Update_Click);
  265. //
  266. // button_terminal
  267. //
  268. this.button_terminal.Location = new System.Drawing.Point(14, 131);
  269. this.button_terminal.Name = "button_terminal";
  270. this.button_terminal.Size = new System.Drawing.Size(197, 34);
  271. this.button_terminal.TabIndex = 94;
  272. this.button_terminal.Text = "Terminal";
  273. this.button_terminal.UseVisualStyleBackColor = true;
  274. this.button_terminal.Click += new System.EventHandler(this.Button_terminal_Click);
  275. //
  276. // Ascii_checkBox
  277. //
  278. this.Ascii_checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  279. | System.Windows.Forms.AnchorStyles.Left)
  280. | System.Windows.Forms.AnchorStyles.Right)));
  281. this.Ascii_checkBox.AutoSize = true;
  282. this.Ascii_checkBox.Location = new System.Drawing.Point(14, 69);
  283. this.Ascii_checkBox.Name = "Ascii_checkBox";
  284. this.Ascii_checkBox.Size = new System.Drawing.Size(55, 16);
  285. this.Ascii_checkBox.TabIndex = 92;
  286. this.Ascii_checkBox.Text = "ASCII";
  287. this.Ascii_checkBox.UseVisualStyleBackColor = true;
  288. //
  289. // cmCom_Port
  290. //
  291. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  292. | System.Windows.Forms.AnchorStyles.Left)
  293. | System.Windows.Forms.AnchorStyles.Right)));
  294. this.cmCom_Port.AutoSize = true;
  295. this.cmCom_Port.Location = new System.Drawing.Point(11, 18);
  296. this.cmCom_Port.Name = "cmCom_Port";
  297. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  298. this.cmCom_Port.TabIndex = 89;
  299. this.cmCom_Port.Text = "Com Port";
  300. //
  301. // button_PortOpen
  302. //
  303. this.button_PortOpen.Location = new System.Drawing.Point(13, 91);
  304. this.button_PortOpen.Name = "button_PortOpen";
  305. this.button_PortOpen.Size = new System.Drawing.Size(197, 34);
  306. this.button_PortOpen.TabIndex = 86;
  307. this.button_PortOpen.Text = "Port Open";
  308. this.button_PortOpen.UseVisualStyleBackColor = true;
  309. this.button_PortOpen.Click += new System.EventHandler(this.Button_PortOpen_Click);
  310. //
  311. // comboBox_Port
  312. //
  313. this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  314. | System.Windows.Forms.AnchorStyles.Left)
  315. | System.Windows.Forms.AnchorStyles.Right)));
  316. this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
  317. this.comboBox_Port.FormattingEnabled = true;
  318. this.comboBox_Port.Location = new System.Drawing.Point(109, 15);
  319. this.comboBox_Port.Name = "comboBox_Port";
  320. this.comboBox_Port.Size = new System.Drawing.Size(101, 20);
  321. this.comboBox_Port.TabIndex = 88;
  322. this.comboBox_Port.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Port_SelectedIndexChanged);
  323. //
  324. // cmBaudRate
  325. //
  326. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  327. | System.Windows.Forms.AnchorStyles.Left)
  328. | System.Windows.Forms.AnchorStyles.Right)));
  329. this.cmBaudRate.AutoSize = true;
  330. this.cmBaudRate.Location = new System.Drawing.Point(11, 47);
  331. this.cmBaudRate.Name = "cmBaudRate";
  332. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  333. this.cmBaudRate.TabIndex = 90;
  334. this.cmBaudRate.Text = "Baud Rate(bps)";
  335. //
  336. // comboBox_baudrate
  337. //
  338. this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  339. | System.Windows.Forms.AnchorStyles.Left)
  340. | System.Windows.Forms.AnchorStyles.Right)));
  341. this.comboBox_baudrate.FormattingEnabled = true;
  342. this.comboBox_baudrate.Items.AddRange(new object[] {
  343. "9600",
  344. "14400",
  345. "19200",
  346. "38400",
  347. "57600",
  348. "115200",
  349. "128000"});
  350. this.comboBox_baudrate.Location = new System.Drawing.Point(110, 45);
  351. this.comboBox_baudrate.Name = "comboBox_baudrate";
  352. this.comboBox_baudrate.Size = new System.Drawing.Size(101, 20);
  353. this.comboBox_baudrate.TabIndex = 91;
  354. this.comboBox_baudrate.Text = "115200";
  355. //
  356. // groupBox3
  357. //
  358. this.groupBox3.Controls.Add(this.label68);
  359. this.groupBox3.Controls.Add(this.label56);
  360. this.groupBox3.Controls.Add(this.label67);
  361. this.groupBox3.Controls.Add(this.label12);
  362. this.groupBox3.Controls.Add(this.label66);
  363. this.groupBox3.Controls.Add(this.label55);
  364. this.groupBox3.Controls.Add(this.label65);
  365. this.groupBox3.Controls.Add(this.label11);
  366. this.groupBox3.Controls.Add(this.label64);
  367. this.groupBox3.Controls.Add(this.label54);
  368. this.groupBox3.Controls.Add(this.label63);
  369. this.groupBox3.Controls.Add(this.label10);
  370. this.groupBox3.Controls.Add(this.label62);
  371. this.groupBox3.Controls.Add(this.label53);
  372. this.groupBox3.Controls.Add(this.label61);
  373. this.groupBox3.Controls.Add(this.label1);
  374. this.groupBox3.Controls.Add(this.label60);
  375. this.groupBox3.Controls.Add(this.label52);
  376. this.groupBox3.Controls.Add(this.label59);
  377. this.groupBox3.Controls.Add(this.label8);
  378. this.groupBox3.Controls.Add(this.label58);
  379. this.groupBox3.Controls.Add(this.label51);
  380. this.groupBox3.Controls.Add(this.label57);
  381. this.groupBox3.Controls.Add(this.label9);
  382. this.groupBox3.Location = new System.Drawing.Point(12, 308);
  383. this.groupBox3.Name = "groupBox3";
  384. this.groupBox3.Size = new System.Drawing.Size(225, 244);
  385. this.groupBox3.TabIndex = 92;
  386. this.groupBox3.TabStop = false;
  387. this.groupBox3.Text = "Voltage";
  388. //
  389. // label68
  390. //
  391. this.label68.AutoSize = true;
  392. this.label68.Location = new System.Drawing.Point(190, 227);
  393. this.label68.Name = "label68";
  394. this.label68.Size = new System.Drawing.Size(29, 12);
  395. this.label68.TabIndex = 98;
  396. this.label68.Text = "0.0V";
  397. //
  398. // label56
  399. //
  400. this.label56.AutoSize = true;
  401. this.label56.Location = new System.Drawing.Point(76, 227);
  402. this.label56.Name = "label56";
  403. this.label56.Size = new System.Drawing.Size(29, 12);
  404. this.label56.TabIndex = 98;
  405. this.label56.Text = "0.0V";
  406. //
  407. // label67
  408. //
  409. this.label67.AutoSize = true;
  410. this.label67.Location = new System.Drawing.Point(189, 104);
  411. this.label67.Name = "label67";
  412. this.label67.Size = new System.Drawing.Size(29, 12);
  413. this.label67.TabIndex = 98;
  414. this.label67.Text = "0.0V";
  415. //
  416. // label12
  417. //
  418. this.label12.AutoSize = true;
  419. this.label12.Location = new System.Drawing.Point(76, 104);
  420. this.label12.Name = "label12";
  421. this.label12.Size = new System.Drawing.Size(29, 12);
  422. this.label12.TabIndex = 98;
  423. this.label12.Text = "0.0V";
  424. //
  425. // label66
  426. //
  427. this.label66.AutoSize = true;
  428. this.label66.Location = new System.Drawing.Point(189, 186);
  429. this.label66.Name = "label66";
  430. this.label66.Size = new System.Drawing.Size(29, 12);
  431. this.label66.TabIndex = 98;
  432. this.label66.Text = "0.0V";
  433. //
  434. // label55
  435. //
  436. this.label55.AutoSize = true;
  437. this.label55.Location = new System.Drawing.Point(76, 186);
  438. this.label55.Name = "label55";
  439. this.label55.Size = new System.Drawing.Size(29, 12);
  440. this.label55.TabIndex = 98;
  441. this.label55.Text = "0.0V";
  442. //
  443. // label65
  444. //
  445. this.label65.AutoSize = true;
  446. this.label65.Location = new System.Drawing.Point(189, 63);
  447. this.label65.Name = "label65";
  448. this.label65.Size = new System.Drawing.Size(29, 12);
  449. this.label65.TabIndex = 98;
  450. this.label65.Text = "0.0V";
  451. //
  452. // label11
  453. //
  454. this.label11.AutoSize = true;
  455. this.label11.Location = new System.Drawing.Point(76, 63);
  456. this.label11.Name = "label11";
  457. this.label11.Size = new System.Drawing.Size(29, 12);
  458. this.label11.TabIndex = 98;
  459. this.label11.Text = "0.0V";
  460. //
  461. // label64
  462. //
  463. this.label64.AutoSize = true;
  464. this.label64.Location = new System.Drawing.Point(189, 145);
  465. this.label64.Name = "label64";
  466. this.label64.Size = new System.Drawing.Size(29, 12);
  467. this.label64.TabIndex = 98;
  468. this.label64.Text = "0.0V";
  469. //
  470. // label54
  471. //
  472. this.label54.AutoSize = true;
  473. this.label54.Location = new System.Drawing.Point(76, 145);
  474. this.label54.Name = "label54";
  475. this.label54.Size = new System.Drawing.Size(29, 12);
  476. this.label54.TabIndex = 98;
  477. this.label54.Text = "0.0V";
  478. //
  479. // label63
  480. //
  481. this.label63.AutoSize = true;
  482. this.label63.Location = new System.Drawing.Point(189, 22);
  483. this.label63.Name = "label63";
  484. this.label63.Size = new System.Drawing.Size(29, 12);
  485. this.label63.TabIndex = 98;
  486. this.label63.Text = "0.0V";
  487. //
  488. // label10
  489. //
  490. this.label10.AutoSize = true;
  491. this.label10.Location = new System.Drawing.Point(76, 22);
  492. this.label10.Name = "label10";
  493. this.label10.Size = new System.Drawing.Size(29, 12);
  494. this.label10.TabIndex = 98;
  495. this.label10.Text = "0.0V";
  496. //
  497. // label62
  498. //
  499. this.label62.AutoSize = true;
  500. this.label62.Location = new System.Drawing.Point(120, 227);
  501. this.label62.Name = "label62";
  502. this.label62.Size = new System.Drawing.Size(53, 12);
  503. this.label62.TabIndex = 95;
  504. this.label62.Text = "3.5GHz :";
  505. //
  506. // label53
  507. //
  508. this.label53.AutoSize = true;
  509. this.label53.Location = new System.Drawing.Point(7, 227);
  510. this.label53.Name = "label53";
  511. this.label53.Size = new System.Drawing.Size(53, 12);
  512. this.label53.TabIndex = 95;
  513. this.label53.Text = "3.5GHz :";
  514. //
  515. // label61
  516. //
  517. this.label61.AutoSize = true;
  518. this.label61.Location = new System.Drawing.Point(120, 104);
  519. this.label61.Name = "label61";
  520. this.label61.Size = new System.Drawing.Size(53, 12);
  521. this.label61.TabIndex = 95;
  522. this.label61.Text = "3.5GHz :";
  523. //
  524. // label1
  525. //
  526. this.label1.AutoSize = true;
  527. this.label1.Location = new System.Drawing.Point(7, 104);
  528. this.label1.Name = "label1";
  529. this.label1.Size = new System.Drawing.Size(53, 12);
  530. this.label1.TabIndex = 95;
  531. this.label1.Text = "3.5GHz :";
  532. //
  533. // label60
  534. //
  535. this.label60.AutoSize = true;
  536. this.label60.Location = new System.Drawing.Point(120, 186);
  537. this.label60.Name = "label60";
  538. this.label60.Size = new System.Drawing.Size(53, 12);
  539. this.label60.TabIndex = 96;
  540. this.label60.Text = "2.1GHz :";
  541. //
  542. // label52
  543. //
  544. this.label52.AutoSize = true;
  545. this.label52.Location = new System.Drawing.Point(7, 186);
  546. this.label52.Name = "label52";
  547. this.label52.Size = new System.Drawing.Size(53, 12);
  548. this.label52.TabIndex = 96;
  549. this.label52.Text = "2.1GHz :";
  550. //
  551. // label59
  552. //
  553. this.label59.AutoSize = true;
  554. this.label59.Location = new System.Drawing.Point(120, 63);
  555. this.label59.Name = "label59";
  556. this.label59.Size = new System.Drawing.Size(53, 12);
  557. this.label59.TabIndex = 96;
  558. this.label59.Text = "2.1GHz :";
  559. //
  560. // label8
  561. //
  562. this.label8.AutoSize = true;
  563. this.label8.Location = new System.Drawing.Point(7, 63);
  564. this.label8.Name = "label8";
  565. this.label8.Size = new System.Drawing.Size(53, 12);
  566. this.label8.TabIndex = 96;
  567. this.label8.Text = "2.1GHz :";
  568. //
  569. // label58
  570. //
  571. this.label58.AutoSize = true;
  572. this.label58.Location = new System.Drawing.Point(120, 145);
  573. this.label58.Name = "label58";
  574. this.label58.Size = new System.Drawing.Size(53, 12);
  575. this.label58.TabIndex = 97;
  576. this.label58.Text = "1.8GHz :";
  577. //
  578. // label51
  579. //
  580. this.label51.AutoSize = true;
  581. this.label51.Location = new System.Drawing.Point(7, 145);
  582. this.label51.Name = "label51";
  583. this.label51.Size = new System.Drawing.Size(53, 12);
  584. this.label51.TabIndex = 97;
  585. this.label51.Text = "1.8GHz :";
  586. //
  587. // label57
  588. //
  589. this.label57.AutoSize = true;
  590. this.label57.Location = new System.Drawing.Point(120, 22);
  591. this.label57.Name = "label57";
  592. this.label57.Size = new System.Drawing.Size(53, 12);
  593. this.label57.TabIndex = 97;
  594. this.label57.Text = "1.8GHz :";
  595. //
  596. // label9
  597. //
  598. this.label9.AutoSize = true;
  599. this.label9.Location = new System.Drawing.Point(7, 22);
  600. this.label9.Name = "label9";
  601. this.label9.Size = new System.Drawing.Size(53, 12);
  602. this.label9.TabIndex = 97;
  603. this.label9.Text = "1.8GHz :";
  604. //
  605. // groupBox8
  606. //
  607. this.groupBox8.Controls.Add(this.groupBox6);
  608. this.groupBox8.Controls.Add(this.groupBox7);
  609. this.groupBox8.Controls.Add(this.groupBox5);
  610. this.groupBox8.Controls.Add(this.groupBox2);
  611. this.groupBox8.Controls.Add(this.groupBox4);
  612. this.groupBox8.Controls.Add(this.groupBox1);
  613. this.groupBox8.Location = new System.Drawing.Point(243, 219);
  614. this.groupBox8.Name = "groupBox8";
  615. this.groupBox8.Size = new System.Drawing.Size(924, 270);
  616. this.groupBox8.TabIndex = 94;
  617. this.groupBox8.TabStop = false;
  618. this.groupBox8.Text = "ATTEN(dB)";
  619. //
  620. // groupBox6
  621. //
  622. this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM3);
  623. this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM2);
  624. this.groupBox6.Controls.Add(this.numericUpDown_ATT_3_5G_COM1);
  625. this.groupBox6.Controls.Add(this.label19);
  626. this.groupBox6.Controls.Add(this.label20);
  627. this.groupBox6.Controls.Add(this.label21);
  628. this.groupBox6.Location = new System.Drawing.Point(687, 120);
  629. this.groupBox6.Name = "groupBox6";
  630. this.groupBox6.Size = new System.Drawing.Size(215, 133);
  631. this.groupBox6.TabIndex = 100;
  632. this.groupBox6.TabStop = false;
  633. this.groupBox6.Text = "3.5GHz UL";
  634. //
  635. // numericUpDown_ATT_3_5G_COM3
  636. //
  637. this.numericUpDown_ATT_3_5G_COM3.DecimalPlaces = 2;
  638. this.numericUpDown_ATT_3_5G_COM3.Increment = new decimal(new int[] {
  639. 25,
  640. 0,
  641. 0,
  642. 131072});
  643. this.numericUpDown_ATT_3_5G_COM3.Location = new System.Drawing.Point(135, 98);
  644. this.numericUpDown_ATT_3_5G_COM3.Maximum = new decimal(new int[] {
  645. 30,
  646. 0,
  647. 0,
  648. 0});
  649. this.numericUpDown_ATT_3_5G_COM3.Name = "numericUpDown_ATT_3_5G_COM3";
  650. this.numericUpDown_ATT_3_5G_COM3.Size = new System.Drawing.Size(71, 21);
  651. this.numericUpDown_ATT_3_5G_COM3.TabIndex = 5;
  652. this.numericUpDown_ATT_3_5G_COM3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  653. //
  654. // numericUpDown_ATT_3_5G_COM2
  655. //
  656. this.numericUpDown_ATT_3_5G_COM2.DecimalPlaces = 2;
  657. this.numericUpDown_ATT_3_5G_COM2.Increment = new decimal(new int[] {
  658. 25,
  659. 0,
  660. 0,
  661. 131072});
  662. this.numericUpDown_ATT_3_5G_COM2.Location = new System.Drawing.Point(135, 60);
  663. this.numericUpDown_ATT_3_5G_COM2.Maximum = new decimal(new int[] {
  664. 30,
  665. 0,
  666. 0,
  667. 0});
  668. this.numericUpDown_ATT_3_5G_COM2.Name = "numericUpDown_ATT_3_5G_COM2";
  669. this.numericUpDown_ATT_3_5G_COM2.Size = new System.Drawing.Size(71, 21);
  670. this.numericUpDown_ATT_3_5G_COM2.TabIndex = 6;
  671. this.numericUpDown_ATT_3_5G_COM2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  672. //
  673. // numericUpDown_ATT_3_5G_COM1
  674. //
  675. this.numericUpDown_ATT_3_5G_COM1.DecimalPlaces = 2;
  676. this.numericUpDown_ATT_3_5G_COM1.Increment = new decimal(new int[] {
  677. 25,
  678. 0,
  679. 0,
  680. 131072});
  681. this.numericUpDown_ATT_3_5G_COM1.Location = new System.Drawing.Point(135, 18);
  682. this.numericUpDown_ATT_3_5G_COM1.Maximum = new decimal(new int[] {
  683. 30,
  684. 0,
  685. 0,
  686. 0});
  687. this.numericUpDown_ATT_3_5G_COM1.Name = "numericUpDown_ATT_3_5G_COM1";
  688. this.numericUpDown_ATT_3_5G_COM1.Size = new System.Drawing.Size(71, 21);
  689. this.numericUpDown_ATT_3_5G_COM1.TabIndex = 7;
  690. this.numericUpDown_ATT_3_5G_COM1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  691. //
  692. // label19
  693. //
  694. this.label19.AutoSize = true;
  695. this.label19.Location = new System.Drawing.Point(9, 22);
  696. this.label19.Name = "label19";
  697. this.label19.Size = new System.Drawing.Size(101, 12);
  698. this.label19.TabIndex = 2;
  699. this.label19.Text = "ATT_3.5G_COM1";
  700. //
  701. // label20
  702. //
  703. this.label20.AutoSize = true;
  704. this.label20.Location = new System.Drawing.Point(9, 104);
  705. this.label20.Name = "label20";
  706. this.label20.Size = new System.Drawing.Size(101, 12);
  707. this.label20.TabIndex = 3;
  708. this.label20.Text = "ATT_3.5G_COM3";
  709. //
  710. // label21
  711. //
  712. this.label21.AutoSize = true;
  713. this.label21.Location = new System.Drawing.Point(9, 64);
  714. this.label21.Name = "label21";
  715. this.label21.Size = new System.Drawing.Size(101, 12);
  716. this.label21.TabIndex = 4;
  717. this.label21.Text = "ATT_3.5G_COM2";
  718. //
  719. // groupBox7
  720. //
  721. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_UL);
  722. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_DL);
  723. this.groupBox7.Controls.Add(this.label26);
  724. this.groupBox7.Controls.Add(this.label28);
  725. this.groupBox7.Location = new System.Drawing.Point(687, 22);
  726. this.groupBox7.Name = "groupBox7";
  727. this.groupBox7.Size = new System.Drawing.Size(215, 83);
  728. this.groupBox7.TabIndex = 94;
  729. this.groupBox7.TabStop = false;
  730. this.groupBox7.Text = "3.5GHz UL";
  731. //
  732. // numericUpDown_ATT_3_5G_UL
  733. //
  734. this.numericUpDown_ATT_3_5G_UL.DecimalPlaces = 2;
  735. this.numericUpDown_ATT_3_5G_UL.Increment = new decimal(new int[] {
  736. 25,
  737. 0,
  738. 0,
  739. 131072});
  740. this.numericUpDown_ATT_3_5G_UL.Location = new System.Drawing.Point(132, 47);
  741. this.numericUpDown_ATT_3_5G_UL.Maximum = new decimal(new int[] {
  742. 30,
  743. 0,
  744. 0,
  745. 0});
  746. this.numericUpDown_ATT_3_5G_UL.Name = "numericUpDown_ATT_3_5G_UL";
  747. this.numericUpDown_ATT_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  748. this.numericUpDown_ATT_3_5G_UL.TabIndex = 1;
  749. this.numericUpDown_ATT_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  750. //
  751. // numericUpDown_ATT_3_5G_DL
  752. //
  753. this.numericUpDown_ATT_3_5G_DL.DecimalPlaces = 2;
  754. this.numericUpDown_ATT_3_5G_DL.Increment = new decimal(new int[] {
  755. 25,
  756. 0,
  757. 0,
  758. 131072});
  759. this.numericUpDown_ATT_3_5G_DL.Location = new System.Drawing.Point(132, 19);
  760. this.numericUpDown_ATT_3_5G_DL.Maximum = new decimal(new int[] {
  761. 30,
  762. 0,
  763. 0,
  764. 0});
  765. this.numericUpDown_ATT_3_5G_DL.Name = "numericUpDown_ATT_3_5G_DL";
  766. this.numericUpDown_ATT_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  767. this.numericUpDown_ATT_3_5G_DL.TabIndex = 1;
  768. this.numericUpDown_ATT_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  769. //
  770. // label26
  771. //
  772. this.label26.AutoSize = true;
  773. this.label26.Location = new System.Drawing.Point(6, 23);
  774. this.label26.Name = "label26";
  775. this.label26.Size = new System.Drawing.Size(81, 12);
  776. this.label26.TabIndex = 0;
  777. this.label26.Text = "ATT_3.5G_DL";
  778. //
  779. // label28
  780. //
  781. this.label28.AutoSize = true;
  782. this.label28.Location = new System.Drawing.Point(6, 53);
  783. this.label28.Name = "label28";
  784. this.label28.Size = new System.Drawing.Size(81, 12);
  785. this.label28.TabIndex = 0;
  786. this.label28.Text = "ATT_3.5G_UL";
  787. //
  788. // groupBox5
  789. //
  790. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL4);
  791. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL2);
  792. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL3);
  793. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL1);
  794. this.groupBox5.Controls.Add(this.label15);
  795. this.groupBox5.Controls.Add(this.label16);
  796. this.groupBox5.Controls.Add(this.label17);
  797. this.groupBox5.Controls.Add(this.label18);
  798. this.groupBox5.Location = new System.Drawing.Point(349, 111);
  799. this.groupBox5.Name = "groupBox5";
  800. this.groupBox5.Size = new System.Drawing.Size(215, 142);
  801. this.groupBox5.TabIndex = 96;
  802. this.groupBox5.TabStop = false;
  803. this.groupBox5.Text = "2.1GHz UL";
  804. //
  805. // numericUpDown_ATT_2_1G_UL4
  806. //
  807. this.numericUpDown_ATT_2_1G_UL4.DecimalPlaces = 1;
  808. this.numericUpDown_ATT_2_1G_UL4.Increment = new decimal(new int[] {
  809. 5,
  810. 0,
  811. 0,
  812. 65536});
  813. this.numericUpDown_ATT_2_1G_UL4.Location = new System.Drawing.Point(132, 104);
  814. this.numericUpDown_ATT_2_1G_UL4.Maximum = new decimal(new int[] {
  815. 30,
  816. 0,
  817. 0,
  818. 0});
  819. this.numericUpDown_ATT_2_1G_UL4.Name = "numericUpDown_ATT_2_1G_UL4";
  820. this.numericUpDown_ATT_2_1G_UL4.Size = new System.Drawing.Size(71, 21);
  821. this.numericUpDown_ATT_2_1G_UL4.TabIndex = 1;
  822. this.numericUpDown_ATT_2_1G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  823. //
  824. // numericUpDown_ATT_2_1G_UL2
  825. //
  826. this.numericUpDown_ATT_2_1G_UL2.DecimalPlaces = 1;
  827. this.numericUpDown_ATT_2_1G_UL2.Increment = new decimal(new int[] {
  828. 5,
  829. 0,
  830. 0,
  831. 65536});
  832. this.numericUpDown_ATT_2_1G_UL2.Location = new System.Drawing.Point(132, 47);
  833. this.numericUpDown_ATT_2_1G_UL2.Maximum = new decimal(new int[] {
  834. 30,
  835. 0,
  836. 0,
  837. 0});
  838. this.numericUpDown_ATT_2_1G_UL2.Name = "numericUpDown_ATT_2_1G_UL2";
  839. this.numericUpDown_ATT_2_1G_UL2.Size = new System.Drawing.Size(71, 21);
  840. this.numericUpDown_ATT_2_1G_UL2.TabIndex = 1;
  841. this.numericUpDown_ATT_2_1G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  842. //
  843. // numericUpDown_ATT_2_1G_UL3
  844. //
  845. this.numericUpDown_ATT_2_1G_UL3.DecimalPlaces = 1;
  846. this.numericUpDown_ATT_2_1G_UL3.Increment = new decimal(new int[] {
  847. 5,
  848. 0,
  849. 0,
  850. 65536});
  851. this.numericUpDown_ATT_2_1G_UL3.Location = new System.Drawing.Point(132, 76);
  852. this.numericUpDown_ATT_2_1G_UL3.Maximum = new decimal(new int[] {
  853. 30,
  854. 0,
  855. 0,
  856. 0});
  857. this.numericUpDown_ATT_2_1G_UL3.Name = "numericUpDown_ATT_2_1G_UL3";
  858. this.numericUpDown_ATT_2_1G_UL3.Size = new System.Drawing.Size(71, 21);
  859. this.numericUpDown_ATT_2_1G_UL3.TabIndex = 1;
  860. this.numericUpDown_ATT_2_1G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  861. //
  862. // numericUpDown_ATT_2_1G_UL1
  863. //
  864. this.numericUpDown_ATT_2_1G_UL1.DecimalPlaces = 1;
  865. this.numericUpDown_ATT_2_1G_UL1.Increment = new decimal(new int[] {
  866. 5,
  867. 0,
  868. 0,
  869. 65536});
  870. this.numericUpDown_ATT_2_1G_UL1.Location = new System.Drawing.Point(132, 19);
  871. this.numericUpDown_ATT_2_1G_UL1.Maximum = new decimal(new int[] {
  872. 30,
  873. 0,
  874. 0,
  875. 0});
  876. this.numericUpDown_ATT_2_1G_UL1.Name = "numericUpDown_ATT_2_1G_UL1";
  877. this.numericUpDown_ATT_2_1G_UL1.Size = new System.Drawing.Size(71, 21);
  878. this.numericUpDown_ATT_2_1G_UL1.TabIndex = 1;
  879. this.numericUpDown_ATT_2_1G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  880. //
  881. // label15
  882. //
  883. this.label15.AutoSize = true;
  884. this.label15.Location = new System.Drawing.Point(6, 80);
  885. this.label15.Name = "label15";
  886. this.label15.Size = new System.Drawing.Size(87, 12);
  887. this.label15.TabIndex = 0;
  888. this.label15.Text = "ATT_2.1G_UL3";
  889. //
  890. // label16
  891. //
  892. this.label16.AutoSize = true;
  893. this.label16.Location = new System.Drawing.Point(6, 110);
  894. this.label16.Name = "label16";
  895. this.label16.Size = new System.Drawing.Size(87, 12);
  896. this.label16.TabIndex = 0;
  897. this.label16.Text = "ATT_2.1G_UL4";
  898. //
  899. // label17
  900. //
  901. this.label17.AutoSize = true;
  902. this.label17.Location = new System.Drawing.Point(6, 23);
  903. this.label17.Name = "label17";
  904. this.label17.Size = new System.Drawing.Size(87, 12);
  905. this.label17.TabIndex = 0;
  906. this.label17.Text = "ATT_2.1G_UL1";
  907. //
  908. // label18
  909. //
  910. this.label18.AutoSize = true;
  911. this.label18.Location = new System.Drawing.Point(6, 53);
  912. this.label18.Name = "label18";
  913. this.label18.Size = new System.Drawing.Size(87, 12);
  914. this.label18.TabIndex = 0;
  915. this.label18.Text = "ATT_2.1G_UL2";
  916. //
  917. // groupBox2
  918. //
  919. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL4);
  920. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL2);
  921. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL3);
  922. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL1);
  923. this.groupBox2.Controls.Add(this.label7);
  924. this.groupBox2.Controls.Add(this.label6);
  925. this.groupBox2.Controls.Add(this.label4);
  926. this.groupBox2.Controls.Add(this.label5);
  927. this.groupBox2.Location = new System.Drawing.Point(23, 111);
  928. this.groupBox2.Name = "groupBox2";
  929. this.groupBox2.Size = new System.Drawing.Size(215, 142);
  930. this.groupBox2.TabIndex = 97;
  931. this.groupBox2.TabStop = false;
  932. this.groupBox2.Text = "1.8GHz UL";
  933. //
  934. // numericUpDown_ATT_1_8G_UL4
  935. //
  936. this.numericUpDown_ATT_1_8G_UL4.DecimalPlaces = 1;
  937. this.numericUpDown_ATT_1_8G_UL4.Increment = new decimal(new int[] {
  938. 5,
  939. 0,
  940. 0,
  941. 65536});
  942. this.numericUpDown_ATT_1_8G_UL4.Location = new System.Drawing.Point(132, 104);
  943. this.numericUpDown_ATT_1_8G_UL4.Maximum = new decimal(new int[] {
  944. 30,
  945. 0,
  946. 0,
  947. 0});
  948. this.numericUpDown_ATT_1_8G_UL4.Name = "numericUpDown_ATT_1_8G_UL4";
  949. this.numericUpDown_ATT_1_8G_UL4.Size = new System.Drawing.Size(71, 21);
  950. this.numericUpDown_ATT_1_8G_UL4.TabIndex = 1;
  951. this.numericUpDown_ATT_1_8G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  952. //
  953. // numericUpDown_ATT_1_8G_UL2
  954. //
  955. this.numericUpDown_ATT_1_8G_UL2.DecimalPlaces = 1;
  956. this.numericUpDown_ATT_1_8G_UL2.Increment = new decimal(new int[] {
  957. 5,
  958. 0,
  959. 0,
  960. 65536});
  961. this.numericUpDown_ATT_1_8G_UL2.Location = new System.Drawing.Point(132, 47);
  962. this.numericUpDown_ATT_1_8G_UL2.Maximum = new decimal(new int[] {
  963. 30,
  964. 0,
  965. 0,
  966. 0});
  967. this.numericUpDown_ATT_1_8G_UL2.Name = "numericUpDown_ATT_1_8G_UL2";
  968. this.numericUpDown_ATT_1_8G_UL2.Size = new System.Drawing.Size(71, 21);
  969. this.numericUpDown_ATT_1_8G_UL2.TabIndex = 1;
  970. this.numericUpDown_ATT_1_8G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  971. //
  972. // numericUpDown_ATT_1_8G_UL3
  973. //
  974. this.numericUpDown_ATT_1_8G_UL3.DecimalPlaces = 1;
  975. this.numericUpDown_ATT_1_8G_UL3.Increment = new decimal(new int[] {
  976. 5,
  977. 0,
  978. 0,
  979. 65536});
  980. this.numericUpDown_ATT_1_8G_UL3.Location = new System.Drawing.Point(132, 76);
  981. this.numericUpDown_ATT_1_8G_UL3.Maximum = new decimal(new int[] {
  982. 30,
  983. 0,
  984. 0,
  985. 0});
  986. this.numericUpDown_ATT_1_8G_UL3.Name = "numericUpDown_ATT_1_8G_UL3";
  987. this.numericUpDown_ATT_1_8G_UL3.Size = new System.Drawing.Size(71, 21);
  988. this.numericUpDown_ATT_1_8G_UL3.TabIndex = 1;
  989. this.numericUpDown_ATT_1_8G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  990. //
  991. // numericUpDown_ATT_1_8G_UL1
  992. //
  993. this.numericUpDown_ATT_1_8G_UL1.DecimalPlaces = 1;
  994. this.numericUpDown_ATT_1_8G_UL1.Increment = new decimal(new int[] {
  995. 5,
  996. 0,
  997. 0,
  998. 65536});
  999. this.numericUpDown_ATT_1_8G_UL1.Location = new System.Drawing.Point(132, 19);
  1000. this.numericUpDown_ATT_1_8G_UL1.Maximum = new decimal(new int[] {
  1001. 30,
  1002. 0,
  1003. 0,
  1004. 0});
  1005. this.numericUpDown_ATT_1_8G_UL1.Name = "numericUpDown_ATT_1_8G_UL1";
  1006. this.numericUpDown_ATT_1_8G_UL1.Size = new System.Drawing.Size(71, 21);
  1007. this.numericUpDown_ATT_1_8G_UL1.TabIndex = 1;
  1008. this.numericUpDown_ATT_1_8G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1009. //
  1010. // label7
  1011. //
  1012. this.label7.AutoSize = true;
  1013. this.label7.Location = new System.Drawing.Point(6, 80);
  1014. this.label7.Name = "label7";
  1015. this.label7.Size = new System.Drawing.Size(87, 12);
  1016. this.label7.TabIndex = 0;
  1017. this.label7.Text = "ATT_1.8G_UL3";
  1018. //
  1019. // label6
  1020. //
  1021. this.label6.AutoSize = true;
  1022. this.label6.Location = new System.Drawing.Point(6, 110);
  1023. this.label6.Name = "label6";
  1024. this.label6.Size = new System.Drawing.Size(87, 12);
  1025. this.label6.TabIndex = 0;
  1026. this.label6.Text = "ATT_1.8G_UL4";
  1027. //
  1028. // label4
  1029. //
  1030. this.label4.AutoSize = true;
  1031. this.label4.Location = new System.Drawing.Point(6, 23);
  1032. this.label4.Name = "label4";
  1033. this.label4.Size = new System.Drawing.Size(87, 12);
  1034. this.label4.TabIndex = 0;
  1035. this.label4.Text = "ATT_1.8G_UL1";
  1036. //
  1037. // label5
  1038. //
  1039. this.label5.AutoSize = true;
  1040. this.label5.Location = new System.Drawing.Point(6, 53);
  1041. this.label5.Name = "label5";
  1042. this.label5.Size = new System.Drawing.Size(87, 12);
  1043. this.label5.TabIndex = 0;
  1044. this.label5.Text = "ATT_1.8G_UL2";
  1045. //
  1046. // groupBox4
  1047. //
  1048. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL2);
  1049. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL1);
  1050. this.groupBox4.Controls.Add(this.label13);
  1051. this.groupBox4.Controls.Add(this.label14);
  1052. this.groupBox4.Location = new System.Drawing.Point(349, 20);
  1053. this.groupBox4.Name = "groupBox4";
  1054. this.groupBox4.Size = new System.Drawing.Size(215, 85);
  1055. this.groupBox4.TabIndex = 98;
  1056. this.groupBox4.TabStop = false;
  1057. this.groupBox4.Text = "2.1GHz DL";
  1058. //
  1059. // numericUpDown_ATT_2_1G_DL2
  1060. //
  1061. this.numericUpDown_ATT_2_1G_DL2.DecimalPlaces = 1;
  1062. this.numericUpDown_ATT_2_1G_DL2.Increment = new decimal(new int[] {
  1063. 5,
  1064. 0,
  1065. 0,
  1066. 65536});
  1067. this.numericUpDown_ATT_2_1G_DL2.Location = new System.Drawing.Point(132, 47);
  1068. this.numericUpDown_ATT_2_1G_DL2.Maximum = new decimal(new int[] {
  1069. 30,
  1070. 0,
  1071. 0,
  1072. 0});
  1073. this.numericUpDown_ATT_2_1G_DL2.Name = "numericUpDown_ATT_2_1G_DL2";
  1074. this.numericUpDown_ATT_2_1G_DL2.Size = new System.Drawing.Size(71, 21);
  1075. this.numericUpDown_ATT_2_1G_DL2.TabIndex = 1;
  1076. this.numericUpDown_ATT_2_1G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1077. //
  1078. // numericUpDown_ATT_2_1G_DL1
  1079. //
  1080. this.numericUpDown_ATT_2_1G_DL1.DecimalPlaces = 1;
  1081. this.numericUpDown_ATT_2_1G_DL1.Increment = new decimal(new int[] {
  1082. 5,
  1083. 0,
  1084. 0,
  1085. 65536});
  1086. this.numericUpDown_ATT_2_1G_DL1.Location = new System.Drawing.Point(132, 19);
  1087. this.numericUpDown_ATT_2_1G_DL1.Maximum = new decimal(new int[] {
  1088. 30,
  1089. 0,
  1090. 0,
  1091. 0});
  1092. this.numericUpDown_ATT_2_1G_DL1.Name = "numericUpDown_ATT_2_1G_DL1";
  1093. this.numericUpDown_ATT_2_1G_DL1.Size = new System.Drawing.Size(71, 21);
  1094. this.numericUpDown_ATT_2_1G_DL1.TabIndex = 1;
  1095. this.numericUpDown_ATT_2_1G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1096. //
  1097. // label13
  1098. //
  1099. this.label13.AutoSize = true;
  1100. this.label13.Location = new System.Drawing.Point(6, 23);
  1101. this.label13.Name = "label13";
  1102. this.label13.Size = new System.Drawing.Size(87, 12);
  1103. this.label13.TabIndex = 0;
  1104. this.label13.Text = "ATT_2.1G_DL1";
  1105. //
  1106. // label14
  1107. //
  1108. this.label14.AutoSize = true;
  1109. this.label14.Location = new System.Drawing.Point(6, 53);
  1110. this.label14.Name = "label14";
  1111. this.label14.Size = new System.Drawing.Size(87, 12);
  1112. this.label14.TabIndex = 0;
  1113. this.label14.Text = "ATT_2.1G_DL2";
  1114. //
  1115. // groupBox1
  1116. //
  1117. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL2);
  1118. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL1);
  1119. this.groupBox1.Controls.Add(this.label3);
  1120. this.groupBox1.Controls.Add(this.label2);
  1121. this.groupBox1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1122. this.groupBox1.Location = new System.Drawing.Point(23, 20);
  1123. this.groupBox1.Name = "groupBox1";
  1124. this.groupBox1.Size = new System.Drawing.Size(215, 85);
  1125. this.groupBox1.TabIndex = 99;
  1126. this.groupBox1.TabStop = false;
  1127. this.groupBox1.Text = "1.8GHz DL";
  1128. //
  1129. // numericUpDown_ATT_1_8G_DL2
  1130. //
  1131. this.numericUpDown_ATT_1_8G_DL2.DecimalPlaces = 1;
  1132. this.numericUpDown_ATT_1_8G_DL2.Increment = new decimal(new int[] {
  1133. 5,
  1134. 0,
  1135. 0,
  1136. 65536});
  1137. this.numericUpDown_ATT_1_8G_DL2.Location = new System.Drawing.Point(132, 47);
  1138. this.numericUpDown_ATT_1_8G_DL2.Maximum = new decimal(new int[] {
  1139. 30,
  1140. 0,
  1141. 0,
  1142. 0});
  1143. this.numericUpDown_ATT_1_8G_DL2.Name = "numericUpDown_ATT_1_8G_DL2";
  1144. this.numericUpDown_ATT_1_8G_DL2.Size = new System.Drawing.Size(71, 21);
  1145. this.numericUpDown_ATT_1_8G_DL2.TabIndex = 1;
  1146. this.numericUpDown_ATT_1_8G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1147. //
  1148. // numericUpDown_ATT_1_8G_DL1
  1149. //
  1150. this.numericUpDown_ATT_1_8G_DL1.DecimalPlaces = 1;
  1151. this.numericUpDown_ATT_1_8G_DL1.Increment = new decimal(new int[] {
  1152. 5,
  1153. 0,
  1154. 0,
  1155. 65536});
  1156. this.numericUpDown_ATT_1_8G_DL1.Location = new System.Drawing.Point(132, 19);
  1157. this.numericUpDown_ATT_1_8G_DL1.Maximum = new decimal(new int[] {
  1158. 30,
  1159. 0,
  1160. 0,
  1161. 0});
  1162. this.numericUpDown_ATT_1_8G_DL1.Name = "numericUpDown_ATT_1_8G_DL1";
  1163. this.numericUpDown_ATT_1_8G_DL1.Size = new System.Drawing.Size(71, 21);
  1164. this.numericUpDown_ATT_1_8G_DL1.TabIndex = 1;
  1165. this.numericUpDown_ATT_1_8G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1166. //
  1167. // label3
  1168. //
  1169. this.label3.AutoSize = true;
  1170. this.label3.Location = new System.Drawing.Point(6, 23);
  1171. this.label3.Name = "label3";
  1172. this.label3.Size = new System.Drawing.Size(87, 12);
  1173. this.label3.TabIndex = 0;
  1174. this.label3.Text = "ATT_1.8G_DL1";
  1175. //
  1176. // label2
  1177. //
  1178. this.label2.AutoSize = true;
  1179. this.label2.Location = new System.Drawing.Point(6, 53);
  1180. this.label2.Name = "label2";
  1181. this.label2.Size = new System.Drawing.Size(87, 12);
  1182. this.label2.TabIndex = 0;
  1183. this.label2.Text = "ATT_1.8G_DL2";
  1184. //
  1185. // groupBox17
  1186. //
  1187. this.groupBox17.Controls.Add(this.label78);
  1188. this.groupBox17.Controls.Add(this.label77);
  1189. this.groupBox17.Controls.Add(this.label76);
  1190. this.groupBox17.Controls.Add(this.label75);
  1191. this.groupBox17.Controls.Add(this.label74);
  1192. this.groupBox17.Controls.Add(this.label73);
  1193. this.groupBox17.Controls.Add(this.label72);
  1194. this.groupBox17.Controls.Add(this.label71);
  1195. this.groupBox17.Controls.Add(this.label70);
  1196. this.groupBox17.Controls.Add(this.label69);
  1197. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_ON);
  1198. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_OFF);
  1199. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_ON);
  1200. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_OFF);
  1201. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_ON);
  1202. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF);
  1203. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_ON);
  1204. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF);
  1205. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_ON);
  1206. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_OFF);
  1207. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_ON);
  1208. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_OFF);
  1209. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_ON);
  1210. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_OFF);
  1211. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_ON);
  1212. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_OFF);
  1213. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_ON);
  1214. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_OFF);
  1215. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_ON);
  1216. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_OFF);
  1217. this.groupBox17.Location = new System.Drawing.Point(243, 77);
  1218. this.groupBox17.Name = "groupBox17";
  1219. this.groupBox17.Size = new System.Drawing.Size(924, 136);
  1220. this.groupBox17.TabIndex = 95;
  1221. this.groupBox17.TabStop = false;
  1222. this.groupBox17.Text = "Power";
  1223. //
  1224. // label78
  1225. //
  1226. this.label78.AutoSize = true;
  1227. this.label78.Location = new System.Drawing.Point(601, 12);
  1228. this.label78.Name = "label78";
  1229. this.label78.Size = new System.Drawing.Size(125, 12);
  1230. this.label78.TabIndex = 97;
  1231. this.label78.Text = "PLL_ON/OFF_3.5G_H";
  1232. //
  1233. // label77
  1234. //
  1235. this.label77.AutoSize = true;
  1236. this.label77.Location = new System.Drawing.Point(601, 74);
  1237. this.label77.Name = "label77";
  1238. this.label77.Size = new System.Drawing.Size(124, 12);
  1239. this.label77.TabIndex = 97;
  1240. this.label77.Text = "PLL_ON/OFF_3.5G_L";
  1241. //
  1242. // label76
  1243. //
  1244. this.label76.AutoSize = true;
  1245. this.label76.Location = new System.Drawing.Point(423, 73);
  1246. this.label76.Name = "label76";
  1247. this.label76.Size = new System.Drawing.Size(112, 12);
  1248. this.label76.TabIndex = 97;
  1249. this.label76.Text = "PATH_EN_3.5G_UL";
  1250. //
  1251. // label75
  1252. //
  1253. this.label75.AutoSize = true;
  1254. this.label75.Location = new System.Drawing.Point(423, 17);
  1255. this.label75.Name = "label75";
  1256. this.label75.Size = new System.Drawing.Size(112, 12);
  1257. this.label75.TabIndex = 97;
  1258. this.label75.Text = "PATH_EN_3.5G_DL";
  1259. //
  1260. // label74
  1261. //
  1262. this.label74.AutoSize = true;
  1263. this.label74.Location = new System.Drawing.Point(788, 12);
  1264. this.label74.Name = "label74";
  1265. this.label74.Size = new System.Drawing.Size(105, 12);
  1266. this.label74.TabIndex = 97;
  1267. this.label74.Text = "PATH_EN_3.5G_H";
  1268. //
  1269. // label73
  1270. //
  1271. this.label73.AutoSize = true;
  1272. this.label73.Location = new System.Drawing.Point(789, 74);
  1273. this.label73.Name = "label73";
  1274. this.label73.Size = new System.Drawing.Size(104, 12);
  1275. this.label73.TabIndex = 97;
  1276. this.label73.Text = "PATH_EN_3.5G_L";
  1277. //
  1278. // label72
  1279. //
  1280. this.label72.AutoSize = true;
  1281. this.label72.Location = new System.Drawing.Point(237, 69);
  1282. this.label72.Name = "label72";
  1283. this.label72.Size = new System.Drawing.Size(112, 12);
  1284. this.label72.TabIndex = 97;
  1285. this.label72.Text = "PATH_EN_2.1G_UL";
  1286. //
  1287. // label71
  1288. //
  1289. this.label71.AutoSize = true;
  1290. this.label71.Location = new System.Drawing.Point(237, 12);
  1291. this.label71.Name = "label71";
  1292. this.label71.Size = new System.Drawing.Size(112, 12);
  1293. this.label71.TabIndex = 97;
  1294. this.label71.Text = "PATH_EN_2.1G_DL";
  1295. //
  1296. // label70
  1297. //
  1298. this.label70.AutoSize = true;
  1299. this.label70.Location = new System.Drawing.Point(48, 69);
  1300. this.label70.Name = "label70";
  1301. this.label70.Size = new System.Drawing.Size(112, 12);
  1302. this.label70.TabIndex = 97;
  1303. this.label70.Text = "PATH_EN_1.8G_UL";
  1304. //
  1305. // label69
  1306. //
  1307. this.label69.AutoSize = true;
  1308. this.label69.Location = new System.Drawing.Point(66, 12);
  1309. this.label69.Name = "label69";
  1310. this.label69.Size = new System.Drawing.Size(112, 12);
  1311. this.label69.TabIndex = 97;
  1312. this.label69.Text = "PATH_EN_1.8G_DL";
  1313. //
  1314. // pictureBox_PATH_3_5G_L_ON
  1315. //
  1316. this.pictureBox_PATH_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_ON.Image")));
  1317. this.pictureBox_PATH_3_5G_L_ON.Location = new System.Drawing.Point(846, 89);
  1318. this.pictureBox_PATH_3_5G_L_ON.Name = "pictureBox_PATH_3_5G_L_ON";
  1319. this.pictureBox_PATH_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1320. this.pictureBox_PATH_3_5G_L_ON.TabIndex = 96;
  1321. this.pictureBox_PATH_3_5G_L_ON.TabStop = false;
  1322. //
  1323. // pictureBox_PATH_3_5G_L_OFF
  1324. //
  1325. this.pictureBox_PATH_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_OFF.Image")));
  1326. this.pictureBox_PATH_3_5G_L_OFF.Location = new System.Drawing.Point(846, 88);
  1327. this.pictureBox_PATH_3_5G_L_OFF.Name = "pictureBox_PATH_3_5G_L_OFF";
  1328. this.pictureBox_PATH_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1329. this.pictureBox_PATH_3_5G_L_OFF.TabIndex = 96;
  1330. this.pictureBox_PATH_3_5G_L_OFF.TabStop = false;
  1331. //
  1332. // pictureBox_PATH_3_5G_H_ON
  1333. //
  1334. this.pictureBox_PATH_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_ON.Image")));
  1335. this.pictureBox_PATH_3_5G_H_ON.Location = new System.Drawing.Point(846, 30);
  1336. this.pictureBox_PATH_3_5G_H_ON.Name = "pictureBox_PATH_3_5G_H_ON";
  1337. this.pictureBox_PATH_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1338. this.pictureBox_PATH_3_5G_H_ON.TabIndex = 96;
  1339. this.pictureBox_PATH_3_5G_H_ON.TabStop = false;
  1340. //
  1341. // pictureBox_PATH_3_5G_H_OFF
  1342. //
  1343. this.pictureBox_PATH_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_OFF.Image")));
  1344. this.pictureBox_PATH_3_5G_H_OFF.Location = new System.Drawing.Point(846, 30);
  1345. this.pictureBox_PATH_3_5G_H_OFF.Name = "pictureBox_PATH_3_5G_H_OFF";
  1346. this.pictureBox_PATH_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1347. this.pictureBox_PATH_3_5G_H_OFF.TabIndex = 96;
  1348. this.pictureBox_PATH_3_5G_H_OFF.TabStop = false;
  1349. //
  1350. // pictureBox_PLL_ON_OFF_3_5G_L_ON
  1351. //
  1352. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_ON.Image")));
  1353. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Location = new System.Drawing.Point(660, 88);
  1354. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_L_ON";
  1355. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1356. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabIndex = 96;
  1357. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabStop = false;
  1358. //
  1359. // pictureBox_PLL_ON_OFF_3_5G_L_OFF
  1360. //
  1361. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image")));
  1362. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Location = new System.Drawing.Point(660, 88);
  1363. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_L_OFF";
  1364. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1365. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabIndex = 96;
  1366. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabStop = false;
  1367. //
  1368. // pictureBox_PLL_ON_OFF_3_5G_H_ON
  1369. //
  1370. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_ON.Image")));
  1371. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Location = new System.Drawing.Point(660, 28);
  1372. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_H_ON";
  1373. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1374. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabIndex = 96;
  1375. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabStop = false;
  1376. //
  1377. // pictureBox_PLL_ON_OFF_3_5G_H_OFF
  1378. //
  1379. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image")));
  1380. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Location = new System.Drawing.Point(660, 28);
  1381. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_H_OFF";
  1382. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1383. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabIndex = 96;
  1384. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabStop = false;
  1385. //
  1386. // pictureBox_PATH_3_5G_UL_ON
  1387. //
  1388. this.pictureBox_PATH_3_5G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_ON.Image")));
  1389. this.pictureBox_PATH_3_5G_UL_ON.Location = new System.Drawing.Point(474, 88);
  1390. this.pictureBox_PATH_3_5G_UL_ON.Name = "pictureBox_PATH_3_5G_UL_ON";
  1391. this.pictureBox_PATH_3_5G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1392. this.pictureBox_PATH_3_5G_UL_ON.TabIndex = 96;
  1393. this.pictureBox_PATH_3_5G_UL_ON.TabStop = false;
  1394. //
  1395. // pictureBox_PATH_3_5G_UL_OFF
  1396. //
  1397. this.pictureBox_PATH_3_5G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_OFF.Image")));
  1398. this.pictureBox_PATH_3_5G_UL_OFF.Location = new System.Drawing.Point(474, 88);
  1399. this.pictureBox_PATH_3_5G_UL_OFF.Name = "pictureBox_PATH_3_5G_UL_OFF";
  1400. this.pictureBox_PATH_3_5G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1401. this.pictureBox_PATH_3_5G_UL_OFF.TabIndex = 96;
  1402. this.pictureBox_PATH_3_5G_UL_OFF.TabStop = false;
  1403. //
  1404. // pictureBox_PATH_3_5G_DL_ON
  1405. //
  1406. this.pictureBox_PATH_3_5G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_ON.Image")));
  1407. this.pictureBox_PATH_3_5G_DL_ON.Location = new System.Drawing.Point(474, 28);
  1408. this.pictureBox_PATH_3_5G_DL_ON.Name = "pictureBox_PATH_3_5G_DL_ON";
  1409. this.pictureBox_PATH_3_5G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1410. this.pictureBox_PATH_3_5G_DL_ON.TabIndex = 96;
  1411. this.pictureBox_PATH_3_5G_DL_ON.TabStop = false;
  1412. //
  1413. // pictureBox_PATH_3_5G_DL_OFF
  1414. //
  1415. this.pictureBox_PATH_3_5G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_OFF.Image")));
  1416. this.pictureBox_PATH_3_5G_DL_OFF.Location = new System.Drawing.Point(474, 28);
  1417. this.pictureBox_PATH_3_5G_DL_OFF.Name = "pictureBox_PATH_3_5G_DL_OFF";
  1418. this.pictureBox_PATH_3_5G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1419. this.pictureBox_PATH_3_5G_DL_OFF.TabIndex = 96;
  1420. this.pictureBox_PATH_3_5G_DL_OFF.TabStop = false;
  1421. //
  1422. // pictureBox_PATH_2_1G_UL_ON
  1423. //
  1424. this.pictureBox_PATH_2_1G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_ON.Image")));
  1425. this.pictureBox_PATH_2_1G_UL_ON.Location = new System.Drawing.Point(288, 90);
  1426. this.pictureBox_PATH_2_1G_UL_ON.Name = "pictureBox_PATH_2_1G_UL_ON";
  1427. this.pictureBox_PATH_2_1G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1428. this.pictureBox_PATH_2_1G_UL_ON.TabIndex = 96;
  1429. this.pictureBox_PATH_2_1G_UL_ON.TabStop = false;
  1430. //
  1431. // pictureBox_PATH_2_1G_UL_OFF
  1432. //
  1433. this.pictureBox_PATH_2_1G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_OFF.Image")));
  1434. this.pictureBox_PATH_2_1G_UL_OFF.Location = new System.Drawing.Point(288, 90);
  1435. this.pictureBox_PATH_2_1G_UL_OFF.Name = "pictureBox_PATH_2_1G_UL_OFF";
  1436. this.pictureBox_PATH_2_1G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1437. this.pictureBox_PATH_2_1G_UL_OFF.TabIndex = 96;
  1438. this.pictureBox_PATH_2_1G_UL_OFF.TabStop = false;
  1439. //
  1440. // pictureBox_PATH_2_1G_DL_ON
  1441. //
  1442. this.pictureBox_PATH_2_1G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_ON.Image")));
  1443. this.pictureBox_PATH_2_1G_DL_ON.Location = new System.Drawing.Point(288, 28);
  1444. this.pictureBox_PATH_2_1G_DL_ON.Name = "pictureBox_PATH_2_1G_DL_ON";
  1445. this.pictureBox_PATH_2_1G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1446. this.pictureBox_PATH_2_1G_DL_ON.TabIndex = 96;
  1447. this.pictureBox_PATH_2_1G_DL_ON.TabStop = false;
  1448. //
  1449. // pictureBox_PATH_2_1G_DL_OFF
  1450. //
  1451. this.pictureBox_PATH_2_1G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_OFF.Image")));
  1452. this.pictureBox_PATH_2_1G_DL_OFF.Location = new System.Drawing.Point(288, 28);
  1453. this.pictureBox_PATH_2_1G_DL_OFF.Name = "pictureBox_PATH_2_1G_DL_OFF";
  1454. this.pictureBox_PATH_2_1G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1455. this.pictureBox_PATH_2_1G_DL_OFF.TabIndex = 96;
  1456. this.pictureBox_PATH_2_1G_DL_OFF.TabStop = false;
  1457. //
  1458. // pictureBox_PATH_1_8G_UL_ON
  1459. //
  1460. this.pictureBox_PATH_1_8G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_ON.Image")));
  1461. this.pictureBox_PATH_1_8G_UL_ON.Location = new System.Drawing.Point(102, 90);
  1462. this.pictureBox_PATH_1_8G_UL_ON.Name = "pictureBox_PATH_1_8G_UL_ON";
  1463. this.pictureBox_PATH_1_8G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1464. this.pictureBox_PATH_1_8G_UL_ON.TabIndex = 96;
  1465. this.pictureBox_PATH_1_8G_UL_ON.TabStop = false;
  1466. //
  1467. // pictureBox_PATH_1_8G_UL_OFF
  1468. //
  1469. this.pictureBox_PATH_1_8G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_OFF.Image")));
  1470. this.pictureBox_PATH_1_8G_UL_OFF.Location = new System.Drawing.Point(102, 90);
  1471. this.pictureBox_PATH_1_8G_UL_OFF.Name = "pictureBox_PATH_1_8G_UL_OFF";
  1472. this.pictureBox_PATH_1_8G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1473. this.pictureBox_PATH_1_8G_UL_OFF.TabIndex = 96;
  1474. this.pictureBox_PATH_1_8G_UL_OFF.TabStop = false;
  1475. //
  1476. // pictureBox_PATH_1_8G_DL_ON
  1477. //
  1478. this.pictureBox_PATH_1_8G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_ON.Image")));
  1479. this.pictureBox_PATH_1_8G_DL_ON.Location = new System.Drawing.Point(102, 30);
  1480. this.pictureBox_PATH_1_8G_DL_ON.Name = "pictureBox_PATH_1_8G_DL_ON";
  1481. this.pictureBox_PATH_1_8G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1482. this.pictureBox_PATH_1_8G_DL_ON.TabIndex = 96;
  1483. this.pictureBox_PATH_1_8G_DL_ON.TabStop = false;
  1484. //
  1485. // pictureBox_PATH_1_8G_DL_OFF
  1486. //
  1487. this.pictureBox_PATH_1_8G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_OFF.Image")));
  1488. this.pictureBox_PATH_1_8G_DL_OFF.Location = new System.Drawing.Point(102, 30);
  1489. this.pictureBox_PATH_1_8G_DL_OFF.Name = "pictureBox_PATH_1_8G_DL_OFF";
  1490. this.pictureBox_PATH_1_8G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1491. this.pictureBox_PATH_1_8G_DL_OFF.TabIndex = 96;
  1492. this.pictureBox_PATH_1_8G_DL_OFF.TabStop = false;
  1493. //
  1494. // label79
  1495. //
  1496. this.label79.AutoSize = true;
  1497. this.label79.Font = new System.Drawing.Font("굴림", 36F, System.Drawing.FontStyle.Bold);
  1498. this.label79.Location = new System.Drawing.Point(499, 20);
  1499. this.label79.Name = "label79";
  1500. this.label79.Size = new System.Drawing.Size(501, 48);
  1501. this.label79.TabIndex = 97;
  1502. this.label79.Text = "RF-TRIO-3.5G-RFU";
  1503. //
  1504. // label80
  1505. //
  1506. this.label80.AutoSize = true;
  1507. this.label80.Location = new System.Drawing.Point(989, 66);
  1508. this.label80.Name = "label80";
  1509. this.label80.Size = new System.Drawing.Size(178, 12);
  1510. this.label80.TabIndex = 98;
  1511. this.label80.Text = "Copyright (c) 2019. BLUECELL";
  1512. //
  1513. // button_Set
  1514. //
  1515. this.button_Set.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Bold);
  1516. this.button_Set.Location = new System.Drawing.Point(12, 626);
  1517. this.button_Set.Name = "button_Set";
  1518. this.button_Set.Size = new System.Drawing.Size(225, 26);
  1519. this.button_Set.TabIndex = 100;
  1520. this.button_Set.Text = "SET";
  1521. this.button_Set.UseVisualStyleBackColor = true;
  1522. this.button_Set.Click += new System.EventHandler(this.button_Set_Click);
  1523. //
  1524. // groupBox10
  1525. //
  1526. this.groupBox10.Controls.Add(this.groupBox11);
  1527. this.groupBox10.Controls.Add(this.groupBox15);
  1528. this.groupBox10.Controls.Add(this.groupBox16);
  1529. this.groupBox10.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1530. this.groupBox10.Location = new System.Drawing.Point(243, 495);
  1531. this.groupBox10.Name = "groupBox10";
  1532. this.groupBox10.Size = new System.Drawing.Size(924, 157);
  1533. this.groupBox10.TabIndex = 102;
  1534. this.groupBox10.TabStop = false;
  1535. this.groupBox10.Text = "PLL(MHz)";
  1536. //
  1537. // groupBox11
  1538. //
  1539. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_UL);
  1540. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_DL);
  1541. this.groupBox11.Controls.Add(this.label32);
  1542. this.groupBox11.Controls.Add(this.label33);
  1543. this.groupBox11.Location = new System.Drawing.Point(687, 41);
  1544. this.groupBox11.Name = "groupBox11";
  1545. this.groupBox11.Size = new System.Drawing.Size(215, 79);
  1546. this.groupBox11.TabIndex = 94;
  1547. this.groupBox11.TabStop = false;
  1548. this.groupBox11.Text = "3.5GHz";
  1549. //
  1550. // numericUpDown_PLL_3_5G_UL
  1551. //
  1552. this.numericUpDown_PLL_3_5G_UL.DecimalPlaces = 1;
  1553. this.numericUpDown_PLL_3_5G_UL.Increment = new decimal(new int[] {
  1554. 1,
  1555. 0,
  1556. 0,
  1557. 65536});
  1558. this.numericUpDown_PLL_3_5G_UL.Location = new System.Drawing.Point(132, 47);
  1559. this.numericUpDown_PLL_3_5G_UL.Maximum = new decimal(new int[] {
  1560. 3000,
  1561. 0,
  1562. 0,
  1563. 0});
  1564. this.numericUpDown_PLL_3_5G_UL.Name = "numericUpDown_PLL_3_5G_UL";
  1565. this.numericUpDown_PLL_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  1566. this.numericUpDown_PLL_3_5G_UL.TabIndex = 1;
  1567. //
  1568. // numericUpDown_PLL_3_5G_DL
  1569. //
  1570. this.numericUpDown_PLL_3_5G_DL.DecimalPlaces = 1;
  1571. this.numericUpDown_PLL_3_5G_DL.Increment = new decimal(new int[] {
  1572. 1,
  1573. 0,
  1574. 0,
  1575. 65536});
  1576. this.numericUpDown_PLL_3_5G_DL.Location = new System.Drawing.Point(132, 19);
  1577. this.numericUpDown_PLL_3_5G_DL.Maximum = new decimal(new int[] {
  1578. 3000,
  1579. 0,
  1580. 0,
  1581. 0});
  1582. this.numericUpDown_PLL_3_5G_DL.Name = "numericUpDown_PLL_3_5G_DL";
  1583. this.numericUpDown_PLL_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  1584. this.numericUpDown_PLL_3_5G_DL.TabIndex = 1;
  1585. //
  1586. // label32
  1587. //
  1588. this.label32.AutoSize = true;
  1589. this.label32.Location = new System.Drawing.Point(6, 23);
  1590. this.label32.Name = "label32";
  1591. this.label32.Size = new System.Drawing.Size(79, 12);
  1592. this.label32.TabIndex = 0;
  1593. this.label32.Text = "PLL_3.5G_DL";
  1594. //
  1595. // label33
  1596. //
  1597. this.label33.AutoSize = true;
  1598. this.label33.Location = new System.Drawing.Point(6, 53);
  1599. this.label33.Name = "label33";
  1600. this.label33.Size = new System.Drawing.Size(79, 12);
  1601. this.label33.TabIndex = 0;
  1602. this.label33.Text = "PLL_3.5G_UL";
  1603. //
  1604. // groupBox15
  1605. //
  1606. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_UL);
  1607. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_DL);
  1608. this.groupBox15.Controls.Add(this.label47);
  1609. this.groupBox15.Controls.Add(this.label48);
  1610. this.groupBox15.Location = new System.Drawing.Point(349, 35);
  1611. this.groupBox15.Name = "groupBox15";
  1612. this.groupBox15.Size = new System.Drawing.Size(215, 85);
  1613. this.groupBox15.TabIndex = 98;
  1614. this.groupBox15.TabStop = false;
  1615. this.groupBox15.Text = "2.1GHz";
  1616. //
  1617. // numericUpDown_PLL_2_1G_UL
  1618. //
  1619. this.numericUpDown_PLL_2_1G_UL.DecimalPlaces = 1;
  1620. this.numericUpDown_PLL_2_1G_UL.Increment = new decimal(new int[] {
  1621. 1,
  1622. 0,
  1623. 0,
  1624. 65536});
  1625. this.numericUpDown_PLL_2_1G_UL.Location = new System.Drawing.Point(132, 47);
  1626. this.numericUpDown_PLL_2_1G_UL.Maximum = new decimal(new int[] {
  1627. 3000,
  1628. 0,
  1629. 0,
  1630. 0});
  1631. this.numericUpDown_PLL_2_1G_UL.Name = "numericUpDown_PLL_2_1G_UL";
  1632. this.numericUpDown_PLL_2_1G_UL.Size = new System.Drawing.Size(71, 21);
  1633. this.numericUpDown_PLL_2_1G_UL.TabIndex = 1;
  1634. //
  1635. // numericUpDown_PLL_2_1G_DL
  1636. //
  1637. this.numericUpDown_PLL_2_1G_DL.DecimalPlaces = 1;
  1638. this.numericUpDown_PLL_2_1G_DL.Increment = new decimal(new int[] {
  1639. 1,
  1640. 0,
  1641. 0,
  1642. 65536});
  1643. this.numericUpDown_PLL_2_1G_DL.Location = new System.Drawing.Point(132, 19);
  1644. this.numericUpDown_PLL_2_1G_DL.Maximum = new decimal(new int[] {
  1645. 3000,
  1646. 0,
  1647. 0,
  1648. 0});
  1649. this.numericUpDown_PLL_2_1G_DL.Name = "numericUpDown_PLL_2_1G_DL";
  1650. this.numericUpDown_PLL_2_1G_DL.Size = new System.Drawing.Size(71, 21);
  1651. this.numericUpDown_PLL_2_1G_DL.TabIndex = 1;
  1652. //
  1653. // label47
  1654. //
  1655. this.label47.AutoSize = true;
  1656. this.label47.Location = new System.Drawing.Point(6, 23);
  1657. this.label47.Name = "label47";
  1658. this.label47.Size = new System.Drawing.Size(79, 12);
  1659. this.label47.TabIndex = 0;
  1660. this.label47.Text = "PLL_2.1G_DL";
  1661. //
  1662. // label48
  1663. //
  1664. this.label48.AutoSize = true;
  1665. this.label48.Location = new System.Drawing.Point(6, 53);
  1666. this.label48.Name = "label48";
  1667. this.label48.Size = new System.Drawing.Size(79, 12);
  1668. this.label48.TabIndex = 0;
  1669. this.label48.Text = "PLL_2.1G_UL";
  1670. //
  1671. // groupBox16
  1672. //
  1673. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_UL);
  1674. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_DL);
  1675. this.groupBox16.Controls.Add(this.label49);
  1676. this.groupBox16.Controls.Add(this.label50);
  1677. this.groupBox16.Location = new System.Drawing.Point(23, 37);
  1678. this.groupBox16.Name = "groupBox16";
  1679. this.groupBox16.Size = new System.Drawing.Size(215, 85);
  1680. this.groupBox16.TabIndex = 99;
  1681. this.groupBox16.TabStop = false;
  1682. this.groupBox16.Text = "1.8GHz";
  1683. //
  1684. // numericUpDown_PLL_1_8G_UL
  1685. //
  1686. this.numericUpDown_PLL_1_8G_UL.DecimalPlaces = 1;
  1687. this.numericUpDown_PLL_1_8G_UL.Increment = new decimal(new int[] {
  1688. 1,
  1689. 0,
  1690. 0,
  1691. 65536});
  1692. this.numericUpDown_PLL_1_8G_UL.Location = new System.Drawing.Point(132, 47);
  1693. this.numericUpDown_PLL_1_8G_UL.Maximum = new decimal(new int[] {
  1694. 3000,
  1695. 0,
  1696. 0,
  1697. 0});
  1698. this.numericUpDown_PLL_1_8G_UL.Name = "numericUpDown_PLL_1_8G_UL";
  1699. this.numericUpDown_PLL_1_8G_UL.Size = new System.Drawing.Size(71, 21);
  1700. this.numericUpDown_PLL_1_8G_UL.TabIndex = 1;
  1701. //
  1702. // numericUpDown_PLL_1_8G_DL
  1703. //
  1704. this.numericUpDown_PLL_1_8G_DL.DecimalPlaces = 1;
  1705. this.numericUpDown_PLL_1_8G_DL.Increment = new decimal(new int[] {
  1706. 1,
  1707. 0,
  1708. 0,
  1709. 65536});
  1710. this.numericUpDown_PLL_1_8G_DL.Location = new System.Drawing.Point(132, 19);
  1711. this.numericUpDown_PLL_1_8G_DL.Maximum = new decimal(new int[] {
  1712. 3000,
  1713. 0,
  1714. 0,
  1715. 0});
  1716. this.numericUpDown_PLL_1_8G_DL.Name = "numericUpDown_PLL_1_8G_DL";
  1717. this.numericUpDown_PLL_1_8G_DL.Size = new System.Drawing.Size(71, 21);
  1718. this.numericUpDown_PLL_1_8G_DL.TabIndex = 1;
  1719. //
  1720. // label49
  1721. //
  1722. this.label49.AutoSize = true;
  1723. this.label49.Location = new System.Drawing.Point(6, 23);
  1724. this.label49.Name = "label49";
  1725. this.label49.Size = new System.Drawing.Size(79, 12);
  1726. this.label49.TabIndex = 0;
  1727. this.label49.Text = "PLL_1.8G_DL";
  1728. //
  1729. // label50
  1730. //
  1731. this.label50.AutoSize = true;
  1732. this.label50.Location = new System.Drawing.Point(6, 53);
  1733. this.label50.Name = "label50";
  1734. this.label50.Size = new System.Drawing.Size(79, 12);
  1735. this.label50.TabIndex = 0;
  1736. this.label50.Text = "PLL_1.8G_UL";
  1737. //
  1738. // timer
  1739. //
  1740. this.timer.Interval = 3000;
  1741. this.timer.Tick += new System.EventHandler(this.timer_Tick);
  1742. //
  1743. // groupBox12
  1744. //
  1745. this.groupBox12.Controls.Add(this.pictureBox_R_TX);
  1746. this.groupBox12.Controls.Add(this.pictureBox_G_TX);
  1747. this.groupBox12.Controls.Add(this.pictureBox_R_RX);
  1748. this.groupBox12.Controls.Add(this.pictureBox_G_RX);
  1749. this.groupBox12.Location = new System.Drawing.Point(12, 12);
  1750. this.groupBox12.Name = "groupBox12";
  1751. this.groupBox12.Size = new System.Drawing.Size(225, 66);
  1752. this.groupBox12.TabIndex = 103;
  1753. this.groupBox12.TabStop = false;
  1754. this.groupBox12.Text = "DATA Status";
  1755. //
  1756. // pictureBox_R_TX
  1757. //
  1758. this.pictureBox_R_TX.Image = global::Basic_Terminal.Properties.Resources.TX_Red_Image;
  1759. this.pictureBox_R_TX.Location = new System.Drawing.Point(31, 20);
  1760. this.pictureBox_R_TX.Name = "pictureBox_R_TX";
  1761. this.pictureBox_R_TX.Size = new System.Drawing.Size(38, 36);
  1762. this.pictureBox_R_TX.TabIndex = 97;
  1763. this.pictureBox_R_TX.TabStop = false;
  1764. //
  1765. // pictureBox_G_TX
  1766. //
  1767. this.pictureBox_G_TX.Image = global::Basic_Terminal.Properties.Resources.TX_IMAGE;
  1768. this.pictureBox_G_TX.Location = new System.Drawing.Point(31, 20);
  1769. this.pictureBox_G_TX.Name = "pictureBox_G_TX";
  1770. this.pictureBox_G_TX.Size = new System.Drawing.Size(38, 36);
  1771. this.pictureBox_G_TX.TabIndex = 96;
  1772. this.pictureBox_G_TX.TabStop = false;
  1773. //
  1774. // pictureBox_R_RX
  1775. //
  1776. this.pictureBox_R_RX.Image = global::Basic_Terminal.Properties.Resources.RX_IMAGE;
  1777. this.pictureBox_R_RX.Location = new System.Drawing.Point(157, 20);
  1778. this.pictureBox_R_RX.Name = "pictureBox_R_RX";
  1779. this.pictureBox_R_RX.Size = new System.Drawing.Size(38, 36);
  1780. this.pictureBox_R_RX.TabIndex = 96;
  1781. this.pictureBox_R_RX.TabStop = false;
  1782. //
  1783. // pictureBox_G_RX
  1784. //
  1785. this.pictureBox_G_RX.Image = global::Basic_Terminal.Properties.Resources.RX_GREEN_IMAGE;
  1786. this.pictureBox_G_RX.Location = new System.Drawing.Point(157, 20);
  1787. this.pictureBox_G_RX.Name = "pictureBox_G_RX";
  1788. this.pictureBox_G_RX.Size = new System.Drawing.Size(38, 36);
  1789. this.pictureBox_G_RX.TabIndex = 98;
  1790. this.pictureBox_G_RX.TabStop = false;
  1791. //
  1792. // pictureBox15
  1793. //
  1794. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  1795. this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1796. this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
  1797. this.pictureBox15.Location = new System.Drawing.Point(1017, 12);
  1798. this.pictureBox15.Name = "pictureBox15";
  1799. this.pictureBox15.Size = new System.Drawing.Size(150, 42);
  1800. this.pictureBox15.TabIndex = 99;
  1801. this.pictureBox15.TabStop = false;
  1802. //
  1803. // groupBox_TDD
  1804. //
  1805. this.groupBox_TDD.Controls.Add(this.label24);
  1806. this.groupBox_TDD.Controls.Add(this.label22);
  1807. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_OFF);
  1808. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_ON);
  1809. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_ON);
  1810. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_OFF);
  1811. this.groupBox_TDD.Location = new System.Drawing.Point(12, 555);
  1812. this.groupBox_TDD.Name = "groupBox_TDD";
  1813. this.groupBox_TDD.Size = new System.Drawing.Size(225, 65);
  1814. this.groupBox_TDD.TabIndex = 105;
  1815. this.groupBox_TDD.TabStop = false;
  1816. this.groupBox_TDD.Text = "Tdd";
  1817. //
  1818. // label24
  1819. //
  1820. this.label24.AutoSize = true;
  1821. this.label24.Location = new System.Drawing.Point(144, 13);
  1822. this.label24.Name = "label24";
  1823. this.label24.Size = new System.Drawing.Size(74, 12);
  1824. this.label24.TabIndex = 103;
  1825. this.label24.Text = "T-SYNC_UL";
  1826. //
  1827. // label22
  1828. //
  1829. this.label22.AutoSize = true;
  1830. this.label22.Location = new System.Drawing.Point(19, 13);
  1831. this.label22.Name = "label22";
  1832. this.label22.Size = new System.Drawing.Size(74, 12);
  1833. this.label22.TabIndex = 103;
  1834. this.label22.Text = "T-SYNC_DL";
  1835. //
  1836. // pictureBox_TDD_T_SYNC_DL_OFF
  1837. //
  1838. this.pictureBox_TDD_T_SYNC_DL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1839. this.pictureBox_TDD_T_SYNC_DL_OFF.Location = new System.Drawing.Point(32, 25);
  1840. this.pictureBox_TDD_T_SYNC_DL_OFF.Name = "pictureBox_TDD_T_SYNC_DL_OFF";
  1841. this.pictureBox_TDD_T_SYNC_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1842. this.pictureBox_TDD_T_SYNC_DL_OFF.TabIndex = 99;
  1843. this.pictureBox_TDD_T_SYNC_DL_OFF.TabStop = false;
  1844. this.pictureBox_TDD_T_SYNC_DL_OFF.Tag = "1";
  1845. this.pictureBox_TDD_T_SYNC_DL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1846. //
  1847. // pictureBox_TDD_T_SYNC_UL_OFF
  1848. //
  1849. this.pictureBox_TDD_T_SYNC_UL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1850. this.pictureBox_TDD_T_SYNC_UL_OFF.Location = new System.Drawing.Point(158, 25);
  1851. this.pictureBox_TDD_T_SYNC_UL_OFF.Name = "pictureBox_TDD_T_SYNC_UL_OFF";
  1852. this.pictureBox_TDD_T_SYNC_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1853. this.pictureBox_TDD_T_SYNC_UL_OFF.TabIndex = 100;
  1854. this.pictureBox_TDD_T_SYNC_UL_OFF.TabStop = false;
  1855. this.pictureBox_TDD_T_SYNC_UL_OFF.Tag = "0";
  1856. this.pictureBox_TDD_T_SYNC_UL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1857. //
  1858. // pictureBox_TDD_T_SYNC_DL_ON
  1859. //
  1860. this.pictureBox_TDD_T_SYNC_DL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1861. this.pictureBox_TDD_T_SYNC_DL_ON.Location = new System.Drawing.Point(32, 25);
  1862. this.pictureBox_TDD_T_SYNC_DL_ON.Name = "pictureBox_TDD_T_SYNC_DL_ON";
  1863. this.pictureBox_TDD_T_SYNC_DL_ON.Size = new System.Drawing.Size(38, 36);
  1864. this.pictureBox_TDD_T_SYNC_DL_ON.TabIndex = 96;
  1865. this.pictureBox_TDD_T_SYNC_DL_ON.TabStop = false;
  1866. this.pictureBox_TDD_T_SYNC_DL_ON.Tag = "0";
  1867. this.pictureBox_TDD_T_SYNC_DL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1868. //
  1869. // pictureBox_TDD_T_SYNC_UL_ON
  1870. //
  1871. this.pictureBox_TDD_T_SYNC_UL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1872. this.pictureBox_TDD_T_SYNC_UL_ON.Location = new System.Drawing.Point(158, 25);
  1873. this.pictureBox_TDD_T_SYNC_UL_ON.Name = "pictureBox_TDD_T_SYNC_UL_ON";
  1874. this.pictureBox_TDD_T_SYNC_UL_ON.Size = new System.Drawing.Size(38, 36);
  1875. this.pictureBox_TDD_T_SYNC_UL_ON.TabIndex = 96;
  1876. this.pictureBox_TDD_T_SYNC_UL_ON.TabStop = false;
  1877. this.pictureBox_TDD_T_SYNC_UL_ON.Tag = "1";
  1878. this.pictureBox_TDD_T_SYNC_UL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1879. //
  1880. // Main_Form
  1881. //
  1882. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  1883. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1884. this.ClientSize = new System.Drawing.Size(1185, 673);
  1885. this.Controls.Add(this.groupBox_TDD);
  1886. this.Controls.Add(this.groupBox12);
  1887. this.Controls.Add(this.groupBox10);
  1888. this.Controls.Add(this.button_Set);
  1889. this.Controls.Add(this.pictureBox15);
  1890. this.Controls.Add(this.label80);
  1891. this.Controls.Add(this.label79);
  1892. this.Controls.Add(this.groupBox17);
  1893. this.Controls.Add(this.groupBox8);
  1894. this.Controls.Add(this.groupBox3);
  1895. this.Controls.Add(this.groupBox9);
  1896. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1897. this.Name = "Main_Form";
  1898. this.Text = "PATH_EN_1.8G_DL";
  1899. this.Load += new System.EventHandler(this.Main_Form_Load);
  1900. this.groupBox9.ResumeLayout(false);
  1901. this.groupBox9.PerformLayout();
  1902. this.groupBox3.ResumeLayout(false);
  1903. this.groupBox3.PerformLayout();
  1904. this.groupBox8.ResumeLayout(false);
  1905. this.groupBox6.ResumeLayout(false);
  1906. this.groupBox6.PerformLayout();
  1907. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).EndInit();
  1908. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).EndInit();
  1909. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).EndInit();
  1910. this.groupBox7.ResumeLayout(false);
  1911. this.groupBox7.PerformLayout();
  1912. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).EndInit();
  1913. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).EndInit();
  1914. this.groupBox5.ResumeLayout(false);
  1915. this.groupBox5.PerformLayout();
  1916. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).EndInit();
  1917. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).EndInit();
  1918. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).EndInit();
  1919. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).EndInit();
  1920. this.groupBox2.ResumeLayout(false);
  1921. this.groupBox2.PerformLayout();
  1922. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).EndInit();
  1923. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).EndInit();
  1924. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).EndInit();
  1925. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).EndInit();
  1926. this.groupBox4.ResumeLayout(false);
  1927. this.groupBox4.PerformLayout();
  1928. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).EndInit();
  1929. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).EndInit();
  1930. this.groupBox1.ResumeLayout(false);
  1931. this.groupBox1.PerformLayout();
  1932. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).EndInit();
  1933. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).EndInit();
  1934. this.groupBox17.ResumeLayout(false);
  1935. this.groupBox17.PerformLayout();
  1936. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).EndInit();
  1937. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).EndInit();
  1938. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).EndInit();
  1939. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).EndInit();
  1940. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).EndInit();
  1941. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).EndInit();
  1942. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).EndInit();
  1943. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).EndInit();
  1944. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).EndInit();
  1945. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).EndInit();
  1946. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).EndInit();
  1947. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).EndInit();
  1948. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).EndInit();
  1949. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).EndInit();
  1950. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).EndInit();
  1951. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).EndInit();
  1952. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).EndInit();
  1953. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).EndInit();
  1954. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).EndInit();
  1955. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).EndInit();
  1956. this.groupBox10.ResumeLayout(false);
  1957. this.groupBox11.ResumeLayout(false);
  1958. this.groupBox11.PerformLayout();
  1959. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).EndInit();
  1960. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).EndInit();
  1961. this.groupBox15.ResumeLayout(false);
  1962. this.groupBox15.PerformLayout();
  1963. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).EndInit();
  1964. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).EndInit();
  1965. this.groupBox16.ResumeLayout(false);
  1966. this.groupBox16.PerformLayout();
  1967. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).EndInit();
  1968. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).EndInit();
  1969. this.groupBox12.ResumeLayout(false);
  1970. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
  1971. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
  1972. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
  1973. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
  1974. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  1975. this.groupBox_TDD.ResumeLayout(false);
  1976. this.groupBox_TDD.PerformLayout();
  1977. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).EndInit();
  1978. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).EndInit();
  1979. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).EndInit();
  1980. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).EndInit();
  1981. this.ResumeLayout(false);
  1982. this.PerformLayout();
  1983. }
  1984. #endregion
  1985. private System.Windows.Forms.GroupBox groupBox9;
  1986. private System.Windows.Forms.Button button3;
  1987. private System.Windows.Forms.Button button_terminal;
  1988. private System.Windows.Forms.CheckBox Ascii_checkBox;
  1989. private System.Windows.Forms.Label cmCom_Port;
  1990. private System.Windows.Forms.Button button_PortOpen;
  1991. private System.Windows.Forms.Label cmBaudRate;
  1992. private System.Windows.Forms.ComboBox comboBox_baudrate;
  1993. public System.Windows.Forms.ComboBox comboBox_Port;
  1994. private System.Windows.Forms.GroupBox groupBox3;
  1995. private System.Windows.Forms.Label label12;
  1996. private System.Windows.Forms.Label label11;
  1997. private System.Windows.Forms.Label label10;
  1998. private System.Windows.Forms.Label label1;
  1999. private System.Windows.Forms.Label label8;
  2000. private System.Windows.Forms.Label label9;
  2001. private System.Windows.Forms.Label label68;
  2002. private System.Windows.Forms.Label label56;
  2003. private System.Windows.Forms.Label label67;
  2004. private System.Windows.Forms.Label label66;
  2005. private System.Windows.Forms.Label label55;
  2006. private System.Windows.Forms.Label label65;
  2007. private System.Windows.Forms.Label label64;
  2008. private System.Windows.Forms.Label label54;
  2009. private System.Windows.Forms.Label label63;
  2010. private System.Windows.Forms.Label label62;
  2011. private System.Windows.Forms.Label label53;
  2012. private System.Windows.Forms.Label label61;
  2013. private System.Windows.Forms.Label label60;
  2014. private System.Windows.Forms.Label label52;
  2015. private System.Windows.Forms.Label label59;
  2016. private System.Windows.Forms.Label label58;
  2017. private System.Windows.Forms.Label label51;
  2018. private System.Windows.Forms.Label label57;
  2019. private System.Windows.Forms.GroupBox groupBox8;
  2020. private System.Windows.Forms.GroupBox groupBox7;
  2021. private System.Windows.Forms.Label label26;
  2022. private System.Windows.Forms.Label label28;
  2023. private System.Windows.Forms.GroupBox groupBox5;
  2024. private System.Windows.Forms.Label label15;
  2025. private System.Windows.Forms.Label label16;
  2026. private System.Windows.Forms.Label label17;
  2027. private System.Windows.Forms.Label label18;
  2028. private System.Windows.Forms.GroupBox groupBox2;
  2029. private System.Windows.Forms.Label label7;
  2030. private System.Windows.Forms.Label label6;
  2031. private System.Windows.Forms.Label label4;
  2032. private System.Windows.Forms.Label label5;
  2033. private System.Windows.Forms.GroupBox groupBox4;
  2034. private System.Windows.Forms.Label label13;
  2035. private System.Windows.Forms.Label label14;
  2036. private System.Windows.Forms.GroupBox groupBox1;
  2037. private System.Windows.Forms.Label label3;
  2038. private System.Windows.Forms.Label label2;
  2039. private System.Windows.Forms.GroupBox groupBox17;
  2040. private System.Windows.Forms.PictureBox pictureBox_G_TX;
  2041. private System.Windows.Forms.Label label78;
  2042. private System.Windows.Forms.Label label77;
  2043. private System.Windows.Forms.Label label76;
  2044. private System.Windows.Forms.Label label75;
  2045. private System.Windows.Forms.Label label74;
  2046. private System.Windows.Forms.Label label73;
  2047. private System.Windows.Forms.Label label72;
  2048. private System.Windows.Forms.Label label71;
  2049. private System.Windows.Forms.Label label70;
  2050. private System.Windows.Forms.Label label69;
  2051. private System.Windows.Forms.PictureBox pictureBox_R_RX;
  2052. private System.Windows.Forms.Label label79;
  2053. private System.Windows.Forms.PictureBox pictureBox15;
  2054. private System.Windows.Forms.Label label80;
  2055. private System.Windows.Forms.Button button_Set;
  2056. private System.Windows.Forms.GroupBox groupBox10;
  2057. private System.Windows.Forms.GroupBox groupBox11;
  2058. private System.Windows.Forms.Label label32;
  2059. private System.Windows.Forms.Label label33;
  2060. private System.Windows.Forms.GroupBox groupBox15;
  2061. private System.Windows.Forms.Label label47;
  2062. private System.Windows.Forms.Label label48;
  2063. private System.Windows.Forms.GroupBox groupBox16;
  2064. private System.Windows.Forms.Label label49;
  2065. private System.Windows.Forms.Label label50;
  2066. private System.Windows.Forms.GroupBox groupBox6;
  2067. private System.Windows.Forms.Label label19;
  2068. private System.Windows.Forms.Label label20;
  2069. private System.Windows.Forms.Label label21;
  2070. private System.Windows.Forms.Timer timer;
  2071. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL1;
  2072. private System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_ON;
  2073. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_UL;
  2074. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_DL;
  2075. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL4;
  2076. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL2;
  2077. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL3;
  2078. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL1;
  2079. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL4;
  2080. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL2;
  2081. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL3;
  2082. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL1;
  2083. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL2;
  2084. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL1;
  2085. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL2;
  2086. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_UL;
  2087. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_DL;
  2088. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_UL;
  2089. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_DL;
  2090. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_UL;
  2091. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_DL;
  2092. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM3;
  2093. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM2;
  2094. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM1;
  2095. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_OFF;
  2096. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_OFF;
  2097. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_OFF;
  2098. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_OFF;
  2099. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_OFF;
  2100. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_OFF;
  2101. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_OFF;
  2102. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_OFF;
  2103. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_OFF;
  2104. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_OFF;
  2105. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_ON;
  2106. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_ON;
  2107. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_ON;
  2108. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_ON;
  2109. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_ON;
  2110. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_ON;
  2111. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_ON;
  2112. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_ON;
  2113. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_ON;
  2114. private System.Windows.Forms.GroupBox groupBox12;
  2115. private System.Windows.Forms.PictureBox pictureBox_R_TX;
  2116. private System.Windows.Forms.PictureBox pictureBox_G_RX;
  2117. private System.Windows.Forms.GroupBox groupBox_TDD;
  2118. private System.Windows.Forms.Label label24;
  2119. private System.Windows.Forms.Label label22;
  2120. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_OFF;
  2121. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_OFF;
  2122. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_ON;
  2123. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_ON;
  2124. }
  2125. }