Main_Form.Designer.cs 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706
  1. namespace RF_TRIO_PLL_ZIG
  2. {
  3. partial class Main_Form
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Form));
  30. this.groupBox9 = new System.Windows.Forms.GroupBox();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.button_terminal = new System.Windows.Forms.Button();
  33. this.setcheck_checkBox = new System.Windows.Forms.CheckBox();
  34. this.cmCom_Port = new System.Windows.Forms.Label();
  35. this.button_PortOpen = new System.Windows.Forms.Button();
  36. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  37. this.cmBaudRate = new System.Windows.Forms.Label();
  38. this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
  39. this.groupBox8 = new System.Windows.Forms.GroupBox();
  40. this.groupBox7 = new System.Windows.Forms.GroupBox();
  41. this.numericUpDown_ATT_3_5G_COM3 = new System.Windows.Forms.NumericUpDown();
  42. this.numericUpDown_ATT_3_5G_COM2 = new System.Windows.Forms.NumericUpDown();
  43. this.numericUpDown_ATT_3_5G_COM1 = new System.Windows.Forms.NumericUpDown();
  44. this.label19 = new System.Windows.Forms.Label();
  45. this.label20 = new System.Windows.Forms.Label();
  46. this.label21 = new System.Windows.Forms.Label();
  47. this.numericUpDown_ATT_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  48. this.numericUpDown_ATT_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  49. this.label26 = new System.Windows.Forms.Label();
  50. this.label28 = new System.Windows.Forms.Label();
  51. this.groupBox5 = new System.Windows.Forms.GroupBox();
  52. this.numericUpDown_ATT_2_1G_UL4 = new System.Windows.Forms.NumericUpDown();
  53. this.numericUpDown_ATT_2_1G_UL2 = new System.Windows.Forms.NumericUpDown();
  54. this.numericUpDown_ATT_2_1G_UL3 = new System.Windows.Forms.NumericUpDown();
  55. this.numericUpDown_ATT_2_1G_UL1 = new System.Windows.Forms.NumericUpDown();
  56. this.label15 = new System.Windows.Forms.Label();
  57. this.label16 = new System.Windows.Forms.Label();
  58. this.label17 = new System.Windows.Forms.Label();
  59. this.label18 = new System.Windows.Forms.Label();
  60. this.groupBox2 = new System.Windows.Forms.GroupBox();
  61. this.numericUpDown_ATT_1_8G_UL4 = new System.Windows.Forms.NumericUpDown();
  62. this.numericUpDown_ATT_1_8G_UL2 = new System.Windows.Forms.NumericUpDown();
  63. this.numericUpDown_ATT_1_8G_UL3 = new System.Windows.Forms.NumericUpDown();
  64. this.numericUpDown_ATT_1_8G_UL1 = new System.Windows.Forms.NumericUpDown();
  65. this.label7 = new System.Windows.Forms.Label();
  66. this.label6 = new System.Windows.Forms.Label();
  67. this.label4 = new System.Windows.Forms.Label();
  68. this.label5 = new System.Windows.Forms.Label();
  69. this.groupBox4 = new System.Windows.Forms.GroupBox();
  70. this.numericUpDown_ATT_2_1G_DL2 = new System.Windows.Forms.NumericUpDown();
  71. this.numericUpDown_ATT_2_1G_DL1 = new System.Windows.Forms.NumericUpDown();
  72. this.label13 = new System.Windows.Forms.Label();
  73. this.label14 = new System.Windows.Forms.Label();
  74. this.groupBox1 = new System.Windows.Forms.GroupBox();
  75. this.numericUpDown_ATT_1_8G_DL2 = new System.Windows.Forms.NumericUpDown();
  76. this.numericUpDown_ATT_1_8G_DL1 = new System.Windows.Forms.NumericUpDown();
  77. this.label3 = new System.Windows.Forms.Label();
  78. this.label2 = new System.Windows.Forms.Label();
  79. this.groupBox17 = new System.Windows.Forms.GroupBox();
  80. this.label74 = new System.Windows.Forms.Label();
  81. this.label73 = new System.Windows.Forms.Label();
  82. this.pictureBox_PATH_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  83. this.pictureBox_PATH_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  84. this.pictureBox_PATH_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  85. this.pictureBox_PATH_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  86. this.label78 = new System.Windows.Forms.Label();
  87. this.label77 = new System.Windows.Forms.Label();
  88. this.label76 = new System.Windows.Forms.Label();
  89. this.label75 = new System.Windows.Forms.Label();
  90. this.label72 = new System.Windows.Forms.Label();
  91. this.label71 = new System.Windows.Forms.Label();
  92. this.label70 = new System.Windows.Forms.Label();
  93. this.label69 = new System.Windows.Forms.Label();
  94. this.pictureBox_PLL_ON_OFF_3_5G_L_ON = new System.Windows.Forms.PictureBox();
  95. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF = new System.Windows.Forms.PictureBox();
  96. this.pictureBox_PLL_ON_OFF_3_5G_H_ON = new System.Windows.Forms.PictureBox();
  97. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF = new System.Windows.Forms.PictureBox();
  98. this.pictureBox_PATH_3_5G_UL_ON = new System.Windows.Forms.PictureBox();
  99. this.pictureBox_PATH_3_5G_UL_OFF = new System.Windows.Forms.PictureBox();
  100. this.pictureBox_PATH_3_5G_DL_ON = new System.Windows.Forms.PictureBox();
  101. this.pictureBox_PATH_3_5G_DL_OFF = new System.Windows.Forms.PictureBox();
  102. this.pictureBox_PATH_2_1G_UL_ON = new System.Windows.Forms.PictureBox();
  103. this.pictureBox_PATH_2_1G_UL_OFF = new System.Windows.Forms.PictureBox();
  104. this.pictureBox_PATH_2_1G_DL_ON = new System.Windows.Forms.PictureBox();
  105. this.pictureBox_PATH_2_1G_DL_OFF = new System.Windows.Forms.PictureBox();
  106. this.pictureBox_PATH_1_8G_UL_ON = new System.Windows.Forms.PictureBox();
  107. this.pictureBox_PATH_1_8G_UL_OFF = new System.Windows.Forms.PictureBox();
  108. this.pictureBox_PATH_1_8G_DL_ON = new System.Windows.Forms.PictureBox();
  109. this.pictureBox_PATH_1_8G_DL_OFF = new System.Windows.Forms.PictureBox();
  110. this.label79 = new System.Windows.Forms.Label();
  111. this.label80 = new System.Windows.Forms.Label();
  112. this.groupBox10 = new System.Windows.Forms.GroupBox();
  113. this.groupBox11 = new System.Windows.Forms.GroupBox();
  114. this.numericUpDown_PLL_3_5G_UL = new System.Windows.Forms.NumericUpDown();
  115. this.numericUpDown_PLL_3_5G_DL = new System.Windows.Forms.NumericUpDown();
  116. this.label32 = new System.Windows.Forms.Label();
  117. this.label33 = new System.Windows.Forms.Label();
  118. this.groupBox15 = new System.Windows.Forms.GroupBox();
  119. this.numericUpDown_PLL_2_1G_UL = new System.Windows.Forms.NumericUpDown();
  120. this.numericUpDown_PLL_2_1G_DL = new System.Windows.Forms.NumericUpDown();
  121. this.label47 = new System.Windows.Forms.Label();
  122. this.label48 = new System.Windows.Forms.Label();
  123. this.groupBox16 = new System.Windows.Forms.GroupBox();
  124. this.numericUpDown_PLL_1_8G_UL = new System.Windows.Forms.NumericUpDown();
  125. this.numericUpDown_PLL_1_8G_DL = new System.Windows.Forms.NumericUpDown();
  126. this.label49 = new System.Windows.Forms.Label();
  127. this.label50 = new System.Windows.Forms.Label();
  128. this.timer = new System.Windows.Forms.Timer(this.components);
  129. this.groupBox12 = new System.Windows.Forms.GroupBox();
  130. this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
  131. this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
  132. this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
  133. this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
  134. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  135. this.groupBox_TDD = new System.Windows.Forms.GroupBox();
  136. this.label24 = new System.Windows.Forms.Label();
  137. this.label22 = new System.Windows.Forms.Label();
  138. this.pictureBox_TDD_T_SYNC_DL_OFF = new System.Windows.Forms.PictureBox();
  139. this.pictureBox_TDD_T_SYNC_DL_ON = new System.Windows.Forms.PictureBox();
  140. this.pictureBox_TDD_T_SYNC_UL_ON = new System.Windows.Forms.PictureBox();
  141. this.pictureBox_TDD_T_SYNC_UL_OFF = new System.Windows.Forms.PictureBox();
  142. this.groupBox3 = new System.Windows.Forms.GroupBox();
  143. this.label_28V_Det = new System.Windows.Forms.Label();
  144. this.label3_5GHz_UL_OUT = new System.Windows.Forms.Label();
  145. this.label2_1GHz_UL_OUT = new System.Windows.Forms.Label();
  146. this.label1_8GHz_UL_OUT = new System.Windows.Forms.Label();
  147. this.label_RFU_Temp = new System.Windows.Forms.Label();
  148. this.label3_5GHz_UL_IN = new System.Windows.Forms.Label();
  149. this.label2_1GHz_UL_IN = new System.Windows.Forms.Label();
  150. this.label1_8GHz_UL_IN = new System.Windows.Forms.Label();
  151. this.label3_5GHz_DL_OUT = new System.Windows.Forms.Label();
  152. this.label2_1GHz_DL_OUT = new System.Windows.Forms.Label();
  153. this.label1_8GHz_DL_OUT = new System.Windows.Forms.Label();
  154. this.label3_5GHz_DL_IN = new System.Windows.Forms.Label();
  155. this.label2_1GHz_DL_IN = new System.Windows.Forms.Label();
  156. this.label1_8GHz_DL_IN = new System.Windows.Forms.Label();
  157. this.label40 = new System.Windows.Forms.Label();
  158. this.label34 = new System.Windows.Forms.Label();
  159. this.label11 = new System.Windows.Forms.Label();
  160. this.label58 = new System.Windows.Forms.Label();
  161. this.label39 = new System.Windows.Forms.Label();
  162. this.label31 = new System.Windows.Forms.Label();
  163. this.label9 = new System.Windows.Forms.Label();
  164. this.label51 = new System.Windows.Forms.Label();
  165. this.label30 = new System.Windows.Forms.Label();
  166. this.label8 = new System.Windows.Forms.Label();
  167. this.label57 = new System.Windows.Forms.Label();
  168. this.label29 = new System.Windows.Forms.Label();
  169. this.label1 = new System.Windows.Forms.Label();
  170. this.label_DET_1_8G_DL_IN = new System.Windows.Forms.Label();
  171. this.button_Set = new System.Windows.Forms.Button();
  172. this.button1 = new System.Windows.Forms.Button();
  173. this.label35 = new System.Windows.Forms.Label();
  174. this.label27 = new System.Windows.Forms.Label();
  175. this.numericUpDown_DAC_VoltCtrl_A = new System.Windows.Forms.NumericUpDown();
  176. this.numericUpDown_DAC_VoltCtrl_E = new System.Windows.Forms.NumericUpDown();
  177. this.groupBox6 = new System.Windows.Forms.GroupBox();
  178. this.label10 = new System.Windows.Forms.Label();
  179. this.numericUpDown11 = new System.Windows.Forms.NumericUpDown();
  180. this.numericUpDown10 = new System.Windows.Forms.NumericUpDown();
  181. this.numericUpDown9 = new System.Windows.Forms.NumericUpDown();
  182. this.numericUpDown_DAC_VoltCtrl_H = new System.Windows.Forms.NumericUpDown();
  183. this.numericUpDown_DAC_VoltCtrl_F = new System.Windows.Forms.NumericUpDown();
  184. this.numericUpDown_DAC_VoltCtrl_G = new System.Windows.Forms.NumericUpDown();
  185. this.numericUpDown_DAC_VoltCtrl_D = new System.Windows.Forms.NumericUpDown();
  186. this.numericUpDown_DAC_VoltCtrl_B = new System.Windows.Forms.NumericUpDown();
  187. this.numericUpDown_DAC_VoltCtrl_C = new System.Windows.Forms.NumericUpDown();
  188. this.label37 = new System.Windows.Forms.Label();
  189. this.label12 = new System.Windows.Forms.Label();
  190. this.label25 = new System.Windows.Forms.Label();
  191. this.label36 = new System.Windows.Forms.Label();
  192. this.label38 = new System.Windows.Forms.Label();
  193. this.label23 = new System.Windows.Forms.Label();
  194. this.button_Save = new System.Windows.Forms.Button();
  195. this.groupBox9.SuspendLayout();
  196. this.groupBox8.SuspendLayout();
  197. this.groupBox7.SuspendLayout();
  198. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).BeginInit();
  199. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).BeginInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).BeginInit();
  201. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).BeginInit();
  202. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).BeginInit();
  203. this.groupBox5.SuspendLayout();
  204. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).BeginInit();
  206. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).BeginInit();
  207. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).BeginInit();
  208. this.groupBox2.SuspendLayout();
  209. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).BeginInit();
  212. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).BeginInit();
  213. this.groupBox4.SuspendLayout();
  214. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).BeginInit();
  215. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).BeginInit();
  216. this.groupBox1.SuspendLayout();
  217. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).BeginInit();
  218. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).BeginInit();
  219. this.groupBox17.SuspendLayout();
  220. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).BeginInit();
  221. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).BeginInit();
  222. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).BeginInit();
  223. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).BeginInit();
  224. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).BeginInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).BeginInit();
  226. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).BeginInit();
  227. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).BeginInit();
  228. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).BeginInit();
  229. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).BeginInit();
  230. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).BeginInit();
  231. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).BeginInit();
  232. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).BeginInit();
  233. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).BeginInit();
  234. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).BeginInit();
  235. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).BeginInit();
  236. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).BeginInit();
  237. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).BeginInit();
  238. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).BeginInit();
  239. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).BeginInit();
  240. this.groupBox10.SuspendLayout();
  241. this.groupBox11.SuspendLayout();
  242. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).BeginInit();
  243. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).BeginInit();
  244. this.groupBox15.SuspendLayout();
  245. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).BeginInit();
  246. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).BeginInit();
  247. this.groupBox16.SuspendLayout();
  248. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).BeginInit();
  250. this.groupBox12.SuspendLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
  253. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
  254. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
  255. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  256. this.groupBox_TDD.SuspendLayout();
  257. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).BeginInit();
  259. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).BeginInit();
  261. this.groupBox3.SuspendLayout();
  262. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).BeginInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).BeginInit();
  264. this.groupBox6.SuspendLayout();
  265. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).BeginInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).BeginInit();
  274. this.SuspendLayout();
  275. //
  276. // groupBox9
  277. //
  278. this.groupBox9.Controls.Add(this.button3);
  279. this.groupBox9.Controls.Add(this.button_terminal);
  280. this.groupBox9.Controls.Add(this.setcheck_checkBox);
  281. this.groupBox9.Controls.Add(this.cmCom_Port);
  282. this.groupBox9.Controls.Add(this.button_PortOpen);
  283. this.groupBox9.Controls.Add(this.comboBox_Port);
  284. this.groupBox9.Controls.Add(this.cmBaudRate);
  285. this.groupBox9.Controls.Add(this.comboBox_baudrate);
  286. this.groupBox9.Location = new System.Drawing.Point(12, 77);
  287. this.groupBox9.Name = "groupBox9";
  288. this.groupBox9.Size = new System.Drawing.Size(225, 223);
  289. this.groupBox9.TabIndex = 82;
  290. this.groupBox9.TabStop = false;
  291. this.groupBox9.Text = "Connection";
  292. this.groupBox9.Click += new System.EventHandler(this.Cusor_DeFocus);
  293. //
  294. // button3
  295. //
  296. this.button3.Location = new System.Drawing.Point(14, 171);
  297. this.button3.Name = "button3";
  298. this.button3.Size = new System.Drawing.Size(197, 34);
  299. this.button3.TabIndex = 93;
  300. this.button3.Text = "Firmware Update";
  301. this.button3.UseVisualStyleBackColor = true;
  302. this.button3.Click += new System.EventHandler(this.Firmware_Update_Click);
  303. //
  304. // button_terminal
  305. //
  306. this.button_terminal.Location = new System.Drawing.Point(14, 131);
  307. this.button_terminal.Name = "button_terminal";
  308. this.button_terminal.Size = new System.Drawing.Size(197, 34);
  309. this.button_terminal.TabIndex = 94;
  310. this.button_terminal.Text = "Terminal";
  311. this.button_terminal.UseVisualStyleBackColor = true;
  312. this.button_terminal.Click += new System.EventHandler(this.Button_terminal_Click);
  313. //
  314. // setcheck_checkBox
  315. //
  316. this.setcheck_checkBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  317. | System.Windows.Forms.AnchorStyles.Left)
  318. | System.Windows.Forms.AnchorStyles.Right)));
  319. this.setcheck_checkBox.AutoSize = true;
  320. this.setcheck_checkBox.Checked = true;
  321. this.setcheck_checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
  322. this.setcheck_checkBox.Location = new System.Drawing.Point(14, 69);
  323. this.setcheck_checkBox.Name = "setcheck_checkBox";
  324. this.setcheck_checkBox.Size = new System.Drawing.Size(102, 16);
  325. this.setcheck_checkBox.TabIndex = 92;
  326. this.setcheck_checkBox.Text = "Setting Check";
  327. this.setcheck_checkBox.UseVisualStyleBackColor = true;
  328. //
  329. // cmCom_Port
  330. //
  331. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  332. | System.Windows.Forms.AnchorStyles.Left)
  333. | System.Windows.Forms.AnchorStyles.Right)));
  334. this.cmCom_Port.AutoSize = true;
  335. this.cmCom_Port.Location = new System.Drawing.Point(11, 18);
  336. this.cmCom_Port.Name = "cmCom_Port";
  337. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  338. this.cmCom_Port.TabIndex = 89;
  339. this.cmCom_Port.Text = "Com Port";
  340. //
  341. // button_PortOpen
  342. //
  343. this.button_PortOpen.Location = new System.Drawing.Point(13, 91);
  344. this.button_PortOpen.Name = "button_PortOpen";
  345. this.button_PortOpen.Size = new System.Drawing.Size(197, 34);
  346. this.button_PortOpen.TabIndex = 86;
  347. this.button_PortOpen.Text = "Port Open";
  348. this.button_PortOpen.UseVisualStyleBackColor = true;
  349. this.button_PortOpen.Click += new System.EventHandler(this.Button_PortOpen_Click);
  350. //
  351. // comboBox_Port
  352. //
  353. this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  354. | System.Windows.Forms.AnchorStyles.Left)
  355. | System.Windows.Forms.AnchorStyles.Right)));
  356. this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
  357. this.comboBox_Port.FormattingEnabled = true;
  358. this.comboBox_Port.Location = new System.Drawing.Point(109, 15);
  359. this.comboBox_Port.Name = "comboBox_Port";
  360. this.comboBox_Port.Size = new System.Drawing.Size(101, 20);
  361. this.comboBox_Port.TabIndex = 88;
  362. this.comboBox_Port.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Port_SelectedIndexChanged);
  363. //
  364. // cmBaudRate
  365. //
  366. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  367. | System.Windows.Forms.AnchorStyles.Left)
  368. | System.Windows.Forms.AnchorStyles.Right)));
  369. this.cmBaudRate.AutoSize = true;
  370. this.cmBaudRate.Location = new System.Drawing.Point(11, 47);
  371. this.cmBaudRate.Name = "cmBaudRate";
  372. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  373. this.cmBaudRate.TabIndex = 90;
  374. this.cmBaudRate.Text = "Baud Rate(bps)";
  375. //
  376. // comboBox_baudrate
  377. //
  378. this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  379. | System.Windows.Forms.AnchorStyles.Left)
  380. | System.Windows.Forms.AnchorStyles.Right)));
  381. this.comboBox_baudrate.FormattingEnabled = true;
  382. this.comboBox_baudrate.Items.AddRange(new object[] {
  383. "9600",
  384. "14400",
  385. "19200",
  386. "38400",
  387. "57600",
  388. "115200",
  389. "128000"});
  390. this.comboBox_baudrate.Location = new System.Drawing.Point(110, 45);
  391. this.comboBox_baudrate.Name = "comboBox_baudrate";
  392. this.comboBox_baudrate.Size = new System.Drawing.Size(101, 20);
  393. this.comboBox_baudrate.TabIndex = 91;
  394. this.comboBox_baudrate.Text = "115200";
  395. //
  396. // groupBox8
  397. //
  398. this.groupBox8.Controls.Add(this.groupBox7);
  399. this.groupBox8.Controls.Add(this.groupBox5);
  400. this.groupBox8.Controls.Add(this.groupBox2);
  401. this.groupBox8.Controls.Add(this.groupBox4);
  402. this.groupBox8.Controls.Add(this.groupBox1);
  403. this.groupBox8.Location = new System.Drawing.Point(243, 219);
  404. this.groupBox8.Name = "groupBox8";
  405. this.groupBox8.Size = new System.Drawing.Size(924, 270);
  406. this.groupBox8.TabIndex = 94;
  407. this.groupBox8.TabStop = false;
  408. this.groupBox8.Text = "ATTEN(dB)";
  409. this.groupBox8.Click += new System.EventHandler(this.Cusor_DeFocus);
  410. //
  411. // groupBox7
  412. //
  413. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM3);
  414. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM2);
  415. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_COM1);
  416. this.groupBox7.Controls.Add(this.label19);
  417. this.groupBox7.Controls.Add(this.label20);
  418. this.groupBox7.Controls.Add(this.label21);
  419. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_UL);
  420. this.groupBox7.Controls.Add(this.numericUpDown_ATT_3_5G_DL);
  421. this.groupBox7.Controls.Add(this.label26);
  422. this.groupBox7.Controls.Add(this.label28);
  423. this.groupBox7.Location = new System.Drawing.Point(623, 22);
  424. this.groupBox7.Name = "groupBox7";
  425. this.groupBox7.Size = new System.Drawing.Size(215, 231);
  426. this.groupBox7.TabIndex = 94;
  427. this.groupBox7.TabStop = false;
  428. this.groupBox7.Text = "3.5GHz";
  429. this.groupBox7.Click += new System.EventHandler(this.Cusor_DeFocus);
  430. //
  431. // numericUpDown_ATT_3_5G_COM3
  432. //
  433. this.numericUpDown_ATT_3_5G_COM3.DecimalPlaces = 2;
  434. this.numericUpDown_ATT_3_5G_COM3.Increment = new decimal(new int[] {
  435. 25,
  436. 0,
  437. 0,
  438. 131072});
  439. this.numericUpDown_ATT_3_5G_COM3.Location = new System.Drawing.Point(141, 175);
  440. this.numericUpDown_ATT_3_5G_COM3.Maximum = new decimal(new int[] {
  441. 30,
  442. 0,
  443. 0,
  444. 0});
  445. this.numericUpDown_ATT_3_5G_COM3.Name = "numericUpDown_ATT_3_5G_COM3";
  446. this.numericUpDown_ATT_3_5G_COM3.Size = new System.Drawing.Size(71, 21);
  447. this.numericUpDown_ATT_3_5G_COM3.TabIndex = 11;
  448. this.numericUpDown_ATT_3_5G_COM3.Enter += new System.EventHandler(this.Activi_Change__Setting);
  449. this.numericUpDown_ATT_3_5G_COM3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  450. this.numericUpDown_ATT_3_5G_COM3.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  451. //
  452. // numericUpDown_ATT_3_5G_COM2
  453. //
  454. this.numericUpDown_ATT_3_5G_COM2.DecimalPlaces = 2;
  455. this.numericUpDown_ATT_3_5G_COM2.Increment = new decimal(new int[] {
  456. 25,
  457. 0,
  458. 0,
  459. 131072});
  460. this.numericUpDown_ATT_3_5G_COM2.Location = new System.Drawing.Point(141, 136);
  461. this.numericUpDown_ATT_3_5G_COM2.Maximum = new decimal(new int[] {
  462. 30,
  463. 0,
  464. 0,
  465. 0});
  466. this.numericUpDown_ATT_3_5G_COM2.Name = "numericUpDown_ATT_3_5G_COM2";
  467. this.numericUpDown_ATT_3_5G_COM2.Size = new System.Drawing.Size(71, 21);
  468. this.numericUpDown_ATT_3_5G_COM2.TabIndex = 12;
  469. this.numericUpDown_ATT_3_5G_COM2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  470. this.numericUpDown_ATT_3_5G_COM2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  471. this.numericUpDown_ATT_3_5G_COM2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  472. //
  473. // numericUpDown_ATT_3_5G_COM1
  474. //
  475. this.numericUpDown_ATT_3_5G_COM1.DecimalPlaces = 2;
  476. this.numericUpDown_ATT_3_5G_COM1.Increment = new decimal(new int[] {
  477. 25,
  478. 0,
  479. 0,
  480. 131072});
  481. this.numericUpDown_ATT_3_5G_COM1.Location = new System.Drawing.Point(141, 97);
  482. this.numericUpDown_ATT_3_5G_COM1.Maximum = new decimal(new int[] {
  483. 30,
  484. 0,
  485. 0,
  486. 0});
  487. this.numericUpDown_ATT_3_5G_COM1.Name = "numericUpDown_ATT_3_5G_COM1";
  488. this.numericUpDown_ATT_3_5G_COM1.Size = new System.Drawing.Size(71, 21);
  489. this.numericUpDown_ATT_3_5G_COM1.TabIndex = 13;
  490. this.numericUpDown_ATT_3_5G_COM1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  491. this.numericUpDown_ATT_3_5G_COM1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  492. this.numericUpDown_ATT_3_5G_COM1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  493. //
  494. // label19
  495. //
  496. this.label19.AutoSize = true;
  497. this.label19.Location = new System.Drawing.Point(6, 101);
  498. this.label19.Name = "label19";
  499. this.label19.Size = new System.Drawing.Size(101, 12);
  500. this.label19.TabIndex = 8;
  501. this.label19.Text = "ATT_3.5G_COM1";
  502. //
  503. // label20
  504. //
  505. this.label20.AutoSize = true;
  506. this.label20.Location = new System.Drawing.Point(6, 179);
  507. this.label20.Name = "label20";
  508. this.label20.Size = new System.Drawing.Size(101, 12);
  509. this.label20.TabIndex = 9;
  510. this.label20.Text = "ATT_3.5G_COM3";
  511. //
  512. // label21
  513. //
  514. this.label21.AutoSize = true;
  515. this.label21.Location = new System.Drawing.Point(6, 140);
  516. this.label21.Name = "label21";
  517. this.label21.Size = new System.Drawing.Size(101, 12);
  518. this.label21.TabIndex = 10;
  519. this.label21.Text = "ATT_3.5G_COM2";
  520. //
  521. // numericUpDown_ATT_3_5G_UL
  522. //
  523. this.numericUpDown_ATT_3_5G_UL.DecimalPlaces = 2;
  524. this.numericUpDown_ATT_3_5G_UL.Increment = new decimal(new int[] {
  525. 25,
  526. 0,
  527. 0,
  528. 131072});
  529. this.numericUpDown_ATT_3_5G_UL.Location = new System.Drawing.Point(141, 58);
  530. this.numericUpDown_ATT_3_5G_UL.Maximum = new decimal(new int[] {
  531. 30,
  532. 0,
  533. 0,
  534. 0});
  535. this.numericUpDown_ATT_3_5G_UL.Name = "numericUpDown_ATT_3_5G_UL";
  536. this.numericUpDown_ATT_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  537. this.numericUpDown_ATT_3_5G_UL.TabIndex = 1;
  538. this.numericUpDown_ATT_3_5G_UL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  539. this.numericUpDown_ATT_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  540. this.numericUpDown_ATT_3_5G_UL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  541. //
  542. // numericUpDown_ATT_3_5G_DL
  543. //
  544. this.numericUpDown_ATT_3_5G_DL.DecimalPlaces = 2;
  545. this.numericUpDown_ATT_3_5G_DL.Increment = new decimal(new int[] {
  546. 25,
  547. 0,
  548. 0,
  549. 131072});
  550. this.numericUpDown_ATT_3_5G_DL.Location = new System.Drawing.Point(141, 19);
  551. this.numericUpDown_ATT_3_5G_DL.Maximum = new decimal(new int[] {
  552. 30,
  553. 0,
  554. 0,
  555. 0});
  556. this.numericUpDown_ATT_3_5G_DL.Name = "numericUpDown_ATT_3_5G_DL";
  557. this.numericUpDown_ATT_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  558. this.numericUpDown_ATT_3_5G_DL.TabIndex = 1;
  559. this.numericUpDown_ATT_3_5G_DL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  560. this.numericUpDown_ATT_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  561. this.numericUpDown_ATT_3_5G_DL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  562. //
  563. // label26
  564. //
  565. this.label26.AutoSize = true;
  566. this.label26.Location = new System.Drawing.Point(6, 23);
  567. this.label26.Name = "label26";
  568. this.label26.Size = new System.Drawing.Size(81, 12);
  569. this.label26.TabIndex = 0;
  570. this.label26.Text = "ATT_3.5G_DL";
  571. //
  572. // label28
  573. //
  574. this.label28.AutoSize = true;
  575. this.label28.Location = new System.Drawing.Point(6, 62);
  576. this.label28.Name = "label28";
  577. this.label28.Size = new System.Drawing.Size(81, 12);
  578. this.label28.TabIndex = 0;
  579. this.label28.Text = "ATT_3.5G_UL";
  580. //
  581. // groupBox5
  582. //
  583. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL4);
  584. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL2);
  585. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL3);
  586. this.groupBox5.Controls.Add(this.numericUpDown_ATT_2_1G_UL1);
  587. this.groupBox5.Controls.Add(this.label15);
  588. this.groupBox5.Controls.Add(this.label16);
  589. this.groupBox5.Controls.Add(this.label17);
  590. this.groupBox5.Controls.Add(this.label18);
  591. this.groupBox5.Location = new System.Drawing.Point(311, 111);
  592. this.groupBox5.Name = "groupBox5";
  593. this.groupBox5.Size = new System.Drawing.Size(215, 142);
  594. this.groupBox5.TabIndex = 96;
  595. this.groupBox5.TabStop = false;
  596. this.groupBox5.Text = "2.1GHz UL";
  597. this.groupBox5.Click += new System.EventHandler(this.Cusor_DeFocus);
  598. //
  599. // numericUpDown_ATT_2_1G_UL4
  600. //
  601. this.numericUpDown_ATT_2_1G_UL4.DecimalPlaces = 1;
  602. this.numericUpDown_ATT_2_1G_UL4.Increment = new decimal(new int[] {
  603. 5,
  604. 0,
  605. 0,
  606. 65536});
  607. this.numericUpDown_ATT_2_1G_UL4.Location = new System.Drawing.Point(132, 104);
  608. this.numericUpDown_ATT_2_1G_UL4.Maximum = new decimal(new int[] {
  609. 30,
  610. 0,
  611. 0,
  612. 0});
  613. this.numericUpDown_ATT_2_1G_UL4.Name = "numericUpDown_ATT_2_1G_UL4";
  614. this.numericUpDown_ATT_2_1G_UL4.Size = new System.Drawing.Size(71, 21);
  615. this.numericUpDown_ATT_2_1G_UL4.TabIndex = 1;
  616. this.numericUpDown_ATT_2_1G_UL4.Enter += new System.EventHandler(this.Activi_Change__Setting);
  617. this.numericUpDown_ATT_2_1G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  618. this.numericUpDown_ATT_2_1G_UL4.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  619. //
  620. // numericUpDown_ATT_2_1G_UL2
  621. //
  622. this.numericUpDown_ATT_2_1G_UL2.DecimalPlaces = 1;
  623. this.numericUpDown_ATT_2_1G_UL2.Increment = new decimal(new int[] {
  624. 5,
  625. 0,
  626. 0,
  627. 65536});
  628. this.numericUpDown_ATT_2_1G_UL2.Location = new System.Drawing.Point(132, 47);
  629. this.numericUpDown_ATT_2_1G_UL2.Maximum = new decimal(new int[] {
  630. 30,
  631. 0,
  632. 0,
  633. 0});
  634. this.numericUpDown_ATT_2_1G_UL2.Name = "numericUpDown_ATT_2_1G_UL2";
  635. this.numericUpDown_ATT_2_1G_UL2.Size = new System.Drawing.Size(71, 21);
  636. this.numericUpDown_ATT_2_1G_UL2.TabIndex = 1;
  637. this.numericUpDown_ATT_2_1G_UL2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  638. this.numericUpDown_ATT_2_1G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  639. this.numericUpDown_ATT_2_1G_UL2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  640. //
  641. // numericUpDown_ATT_2_1G_UL3
  642. //
  643. this.numericUpDown_ATT_2_1G_UL3.DecimalPlaces = 1;
  644. this.numericUpDown_ATT_2_1G_UL3.Increment = new decimal(new int[] {
  645. 5,
  646. 0,
  647. 0,
  648. 65536});
  649. this.numericUpDown_ATT_2_1G_UL3.Location = new System.Drawing.Point(132, 76);
  650. this.numericUpDown_ATT_2_1G_UL3.Maximum = new decimal(new int[] {
  651. 30,
  652. 0,
  653. 0,
  654. 0});
  655. this.numericUpDown_ATT_2_1G_UL3.Name = "numericUpDown_ATT_2_1G_UL3";
  656. this.numericUpDown_ATT_2_1G_UL3.Size = new System.Drawing.Size(71, 21);
  657. this.numericUpDown_ATT_2_1G_UL3.TabIndex = 1;
  658. this.numericUpDown_ATT_2_1G_UL3.Enter += new System.EventHandler(this.Activi_Change__Setting);
  659. this.numericUpDown_ATT_2_1G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  660. this.numericUpDown_ATT_2_1G_UL3.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  661. //
  662. // numericUpDown_ATT_2_1G_UL1
  663. //
  664. this.numericUpDown_ATT_2_1G_UL1.DecimalPlaces = 1;
  665. this.numericUpDown_ATT_2_1G_UL1.Increment = new decimal(new int[] {
  666. 5,
  667. 0,
  668. 0,
  669. 65536});
  670. this.numericUpDown_ATT_2_1G_UL1.Location = new System.Drawing.Point(132, 19);
  671. this.numericUpDown_ATT_2_1G_UL1.Maximum = new decimal(new int[] {
  672. 30,
  673. 0,
  674. 0,
  675. 0});
  676. this.numericUpDown_ATT_2_1G_UL1.Name = "numericUpDown_ATT_2_1G_UL1";
  677. this.numericUpDown_ATT_2_1G_UL1.Size = new System.Drawing.Size(71, 21);
  678. this.numericUpDown_ATT_2_1G_UL1.TabIndex = 1;
  679. this.numericUpDown_ATT_2_1G_UL1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  680. this.numericUpDown_ATT_2_1G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  681. this.numericUpDown_ATT_2_1G_UL1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  682. //
  683. // label15
  684. //
  685. this.label15.AutoSize = true;
  686. this.label15.Location = new System.Drawing.Point(6, 80);
  687. this.label15.Name = "label15";
  688. this.label15.Size = new System.Drawing.Size(87, 12);
  689. this.label15.TabIndex = 0;
  690. this.label15.Text = "ATT_2.1G_UL3";
  691. //
  692. // label16
  693. //
  694. this.label16.AutoSize = true;
  695. this.label16.Location = new System.Drawing.Point(6, 110);
  696. this.label16.Name = "label16";
  697. this.label16.Size = new System.Drawing.Size(87, 12);
  698. this.label16.TabIndex = 0;
  699. this.label16.Text = "ATT_2.1G_UL4";
  700. //
  701. // label17
  702. //
  703. this.label17.AutoSize = true;
  704. this.label17.Location = new System.Drawing.Point(6, 23);
  705. this.label17.Name = "label17";
  706. this.label17.Size = new System.Drawing.Size(87, 12);
  707. this.label17.TabIndex = 0;
  708. this.label17.Text = "ATT_2.1G_UL1";
  709. //
  710. // label18
  711. //
  712. this.label18.AutoSize = true;
  713. this.label18.Location = new System.Drawing.Point(6, 53);
  714. this.label18.Name = "label18";
  715. this.label18.Size = new System.Drawing.Size(87, 12);
  716. this.label18.TabIndex = 0;
  717. this.label18.Text = "ATT_2.1G_UL2";
  718. //
  719. // groupBox2
  720. //
  721. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL4);
  722. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL2);
  723. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL3);
  724. this.groupBox2.Controls.Add(this.numericUpDown_ATT_1_8G_UL1);
  725. this.groupBox2.Controls.Add(this.label7);
  726. this.groupBox2.Controls.Add(this.label6);
  727. this.groupBox2.Controls.Add(this.label4);
  728. this.groupBox2.Controls.Add(this.label5);
  729. this.groupBox2.Location = new System.Drawing.Point(23, 111);
  730. this.groupBox2.Name = "groupBox2";
  731. this.groupBox2.Size = new System.Drawing.Size(215, 142);
  732. this.groupBox2.TabIndex = 97;
  733. this.groupBox2.TabStop = false;
  734. this.groupBox2.Text = "1.8GHz UL";
  735. this.groupBox2.Click += new System.EventHandler(this.Cusor_DeFocus);
  736. //
  737. // numericUpDown_ATT_1_8G_UL4
  738. //
  739. this.numericUpDown_ATT_1_8G_UL4.DecimalPlaces = 1;
  740. this.numericUpDown_ATT_1_8G_UL4.Increment = new decimal(new int[] {
  741. 5,
  742. 0,
  743. 0,
  744. 65536});
  745. this.numericUpDown_ATT_1_8G_UL4.Location = new System.Drawing.Point(132, 104);
  746. this.numericUpDown_ATT_1_8G_UL4.Maximum = new decimal(new int[] {
  747. 30,
  748. 0,
  749. 0,
  750. 0});
  751. this.numericUpDown_ATT_1_8G_UL4.Name = "numericUpDown_ATT_1_8G_UL4";
  752. this.numericUpDown_ATT_1_8G_UL4.Size = new System.Drawing.Size(71, 21);
  753. this.numericUpDown_ATT_1_8G_UL4.TabIndex = 1;
  754. this.numericUpDown_ATT_1_8G_UL4.Enter += new System.EventHandler(this.Activi_Change__Setting);
  755. this.numericUpDown_ATT_1_8G_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  756. this.numericUpDown_ATT_1_8G_UL4.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  757. //
  758. // numericUpDown_ATT_1_8G_UL2
  759. //
  760. this.numericUpDown_ATT_1_8G_UL2.DecimalPlaces = 1;
  761. this.numericUpDown_ATT_1_8G_UL2.Increment = new decimal(new int[] {
  762. 5,
  763. 0,
  764. 0,
  765. 65536});
  766. this.numericUpDown_ATT_1_8G_UL2.Location = new System.Drawing.Point(132, 47);
  767. this.numericUpDown_ATT_1_8G_UL2.Maximum = new decimal(new int[] {
  768. 30,
  769. 0,
  770. 0,
  771. 0});
  772. this.numericUpDown_ATT_1_8G_UL2.Name = "numericUpDown_ATT_1_8G_UL2";
  773. this.numericUpDown_ATT_1_8G_UL2.Size = new System.Drawing.Size(71, 21);
  774. this.numericUpDown_ATT_1_8G_UL2.TabIndex = 1;
  775. this.numericUpDown_ATT_1_8G_UL2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  776. this.numericUpDown_ATT_1_8G_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  777. this.numericUpDown_ATT_1_8G_UL2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  778. //
  779. // numericUpDown_ATT_1_8G_UL3
  780. //
  781. this.numericUpDown_ATT_1_8G_UL3.DecimalPlaces = 1;
  782. this.numericUpDown_ATT_1_8G_UL3.Increment = new decimal(new int[] {
  783. 5,
  784. 0,
  785. 0,
  786. 65536});
  787. this.numericUpDown_ATT_1_8G_UL3.Location = new System.Drawing.Point(132, 76);
  788. this.numericUpDown_ATT_1_8G_UL3.Maximum = new decimal(new int[] {
  789. 30,
  790. 0,
  791. 0,
  792. 0});
  793. this.numericUpDown_ATT_1_8G_UL3.Name = "numericUpDown_ATT_1_8G_UL3";
  794. this.numericUpDown_ATT_1_8G_UL3.Size = new System.Drawing.Size(71, 21);
  795. this.numericUpDown_ATT_1_8G_UL3.TabIndex = 1;
  796. this.numericUpDown_ATT_1_8G_UL3.Enter += new System.EventHandler(this.Activi_Change__Setting);
  797. this.numericUpDown_ATT_1_8G_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  798. this.numericUpDown_ATT_1_8G_UL3.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  799. //
  800. // numericUpDown_ATT_1_8G_UL1
  801. //
  802. this.numericUpDown_ATT_1_8G_UL1.DecimalPlaces = 1;
  803. this.numericUpDown_ATT_1_8G_UL1.Increment = new decimal(new int[] {
  804. 5,
  805. 0,
  806. 0,
  807. 65536});
  808. this.numericUpDown_ATT_1_8G_UL1.Location = new System.Drawing.Point(132, 19);
  809. this.numericUpDown_ATT_1_8G_UL1.Maximum = new decimal(new int[] {
  810. 30,
  811. 0,
  812. 0,
  813. 0});
  814. this.numericUpDown_ATT_1_8G_UL1.Name = "numericUpDown_ATT_1_8G_UL1";
  815. this.numericUpDown_ATT_1_8G_UL1.Size = new System.Drawing.Size(71, 21);
  816. this.numericUpDown_ATT_1_8G_UL1.TabIndex = 1;
  817. this.numericUpDown_ATT_1_8G_UL1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  818. this.numericUpDown_ATT_1_8G_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  819. this.numericUpDown_ATT_1_8G_UL1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  820. //
  821. // label7
  822. //
  823. this.label7.AutoSize = true;
  824. this.label7.Location = new System.Drawing.Point(6, 80);
  825. this.label7.Name = "label7";
  826. this.label7.Size = new System.Drawing.Size(87, 12);
  827. this.label7.TabIndex = 0;
  828. this.label7.Text = "ATT_1.8G_UL3";
  829. //
  830. // label6
  831. //
  832. this.label6.AutoSize = true;
  833. this.label6.Location = new System.Drawing.Point(6, 110);
  834. this.label6.Name = "label6";
  835. this.label6.Size = new System.Drawing.Size(87, 12);
  836. this.label6.TabIndex = 0;
  837. this.label6.Text = "ATT_1.8G_UL4";
  838. //
  839. // label4
  840. //
  841. this.label4.AutoSize = true;
  842. this.label4.Location = new System.Drawing.Point(6, 23);
  843. this.label4.Name = "label4";
  844. this.label4.Size = new System.Drawing.Size(87, 12);
  845. this.label4.TabIndex = 0;
  846. this.label4.Text = "ATT_1.8G_UL1";
  847. //
  848. // label5
  849. //
  850. this.label5.AutoSize = true;
  851. this.label5.Location = new System.Drawing.Point(6, 53);
  852. this.label5.Name = "label5";
  853. this.label5.Size = new System.Drawing.Size(87, 12);
  854. this.label5.TabIndex = 0;
  855. this.label5.Text = "ATT_1.8G_UL2";
  856. //
  857. // groupBox4
  858. //
  859. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL2);
  860. this.groupBox4.Controls.Add(this.numericUpDown_ATT_2_1G_DL1);
  861. this.groupBox4.Controls.Add(this.label13);
  862. this.groupBox4.Controls.Add(this.label14);
  863. this.groupBox4.Location = new System.Drawing.Point(311, 20);
  864. this.groupBox4.Name = "groupBox4";
  865. this.groupBox4.Size = new System.Drawing.Size(215, 85);
  866. this.groupBox4.TabIndex = 98;
  867. this.groupBox4.TabStop = false;
  868. this.groupBox4.Text = "2.1GHz DL";
  869. this.groupBox4.Click += new System.EventHandler(this.Cusor_DeFocus);
  870. //
  871. // numericUpDown_ATT_2_1G_DL2
  872. //
  873. this.numericUpDown_ATT_2_1G_DL2.DecimalPlaces = 1;
  874. this.numericUpDown_ATT_2_1G_DL2.Increment = new decimal(new int[] {
  875. 5,
  876. 0,
  877. 0,
  878. 65536});
  879. this.numericUpDown_ATT_2_1G_DL2.Location = new System.Drawing.Point(132, 47);
  880. this.numericUpDown_ATT_2_1G_DL2.Maximum = new decimal(new int[] {
  881. 30,
  882. 0,
  883. 0,
  884. 0});
  885. this.numericUpDown_ATT_2_1G_DL2.Name = "numericUpDown_ATT_2_1G_DL2";
  886. this.numericUpDown_ATT_2_1G_DL2.Size = new System.Drawing.Size(71, 21);
  887. this.numericUpDown_ATT_2_1G_DL2.TabIndex = 1;
  888. this.numericUpDown_ATT_2_1G_DL2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  889. this.numericUpDown_ATT_2_1G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  890. this.numericUpDown_ATT_2_1G_DL2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  891. //
  892. // numericUpDown_ATT_2_1G_DL1
  893. //
  894. this.numericUpDown_ATT_2_1G_DL1.DecimalPlaces = 1;
  895. this.numericUpDown_ATT_2_1G_DL1.Increment = new decimal(new int[] {
  896. 5,
  897. 0,
  898. 0,
  899. 65536});
  900. this.numericUpDown_ATT_2_1G_DL1.Location = new System.Drawing.Point(132, 19);
  901. this.numericUpDown_ATT_2_1G_DL1.Maximum = new decimal(new int[] {
  902. 30,
  903. 0,
  904. 0,
  905. 0});
  906. this.numericUpDown_ATT_2_1G_DL1.Name = "numericUpDown_ATT_2_1G_DL1";
  907. this.numericUpDown_ATT_2_1G_DL1.Size = new System.Drawing.Size(71, 21);
  908. this.numericUpDown_ATT_2_1G_DL1.TabIndex = 1;
  909. this.numericUpDown_ATT_2_1G_DL1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  910. this.numericUpDown_ATT_2_1G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  911. this.numericUpDown_ATT_2_1G_DL1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  912. //
  913. // label13
  914. //
  915. this.label13.AutoSize = true;
  916. this.label13.Location = new System.Drawing.Point(6, 23);
  917. this.label13.Name = "label13";
  918. this.label13.Size = new System.Drawing.Size(87, 12);
  919. this.label13.TabIndex = 0;
  920. this.label13.Text = "ATT_2.1G_DL1";
  921. //
  922. // label14
  923. //
  924. this.label14.AutoSize = true;
  925. this.label14.Location = new System.Drawing.Point(6, 53);
  926. this.label14.Name = "label14";
  927. this.label14.Size = new System.Drawing.Size(87, 12);
  928. this.label14.TabIndex = 0;
  929. this.label14.Text = "ATT_2.1G_DL2";
  930. //
  931. // groupBox1
  932. //
  933. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL2);
  934. this.groupBox1.Controls.Add(this.numericUpDown_ATT_1_8G_DL1);
  935. this.groupBox1.Controls.Add(this.label3);
  936. this.groupBox1.Controls.Add(this.label2);
  937. this.groupBox1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  938. this.groupBox1.Location = new System.Drawing.Point(23, 20);
  939. this.groupBox1.Name = "groupBox1";
  940. this.groupBox1.Size = new System.Drawing.Size(215, 85);
  941. this.groupBox1.TabIndex = 99;
  942. this.groupBox1.TabStop = false;
  943. this.groupBox1.Text = "1.8GHz DL";
  944. this.groupBox1.Click += new System.EventHandler(this.Cusor_DeFocus);
  945. //
  946. // numericUpDown_ATT_1_8G_DL2
  947. //
  948. this.numericUpDown_ATT_1_8G_DL2.DecimalPlaces = 1;
  949. this.numericUpDown_ATT_1_8G_DL2.Increment = new decimal(new int[] {
  950. 5,
  951. 0,
  952. 0,
  953. 65536});
  954. this.numericUpDown_ATT_1_8G_DL2.Location = new System.Drawing.Point(132, 47);
  955. this.numericUpDown_ATT_1_8G_DL2.Maximum = new decimal(new int[] {
  956. 30,
  957. 0,
  958. 0,
  959. 0});
  960. this.numericUpDown_ATT_1_8G_DL2.Name = "numericUpDown_ATT_1_8G_DL2";
  961. this.numericUpDown_ATT_1_8G_DL2.Size = new System.Drawing.Size(71, 21);
  962. this.numericUpDown_ATT_1_8G_DL2.TabIndex = 1;
  963. this.numericUpDown_ATT_1_8G_DL2.Enter += new System.EventHandler(this.Activi_Change__Setting);
  964. this.numericUpDown_ATT_1_8G_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  965. this.numericUpDown_ATT_1_8G_DL2.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  966. //
  967. // numericUpDown_ATT_1_8G_DL1
  968. //
  969. this.numericUpDown_ATT_1_8G_DL1.DecimalPlaces = 1;
  970. this.numericUpDown_ATT_1_8G_DL1.Increment = new decimal(new int[] {
  971. 5,
  972. 0,
  973. 0,
  974. 65536});
  975. this.numericUpDown_ATT_1_8G_DL1.Location = new System.Drawing.Point(132, 19);
  976. this.numericUpDown_ATT_1_8G_DL1.Maximum = new decimal(new int[] {
  977. 30,
  978. 0,
  979. 0,
  980. 0});
  981. this.numericUpDown_ATT_1_8G_DL1.Name = "numericUpDown_ATT_1_8G_DL1";
  982. this.numericUpDown_ATT_1_8G_DL1.Size = new System.Drawing.Size(71, 21);
  983. this.numericUpDown_ATT_1_8G_DL1.TabIndex = 1;
  984. this.numericUpDown_ATT_1_8G_DL1.Enter += new System.EventHandler(this.Activi_Change__Setting);
  985. this.numericUpDown_ATT_1_8G_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  986. this.numericUpDown_ATT_1_8G_DL1.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  987. //
  988. // label3
  989. //
  990. this.label3.AutoSize = true;
  991. this.label3.Location = new System.Drawing.Point(6, 23);
  992. this.label3.Name = "label3";
  993. this.label3.Size = new System.Drawing.Size(87, 12);
  994. this.label3.TabIndex = 0;
  995. this.label3.Text = "ATT_1.8G_DL1";
  996. //
  997. // label2
  998. //
  999. this.label2.AutoSize = true;
  1000. this.label2.Location = new System.Drawing.Point(6, 53);
  1001. this.label2.Name = "label2";
  1002. this.label2.Size = new System.Drawing.Size(87, 12);
  1003. this.label2.TabIndex = 0;
  1004. this.label2.Text = "ATT_1.8G_DL2";
  1005. //
  1006. // groupBox17
  1007. //
  1008. this.groupBox17.Controls.Add(this.label74);
  1009. this.groupBox17.Controls.Add(this.label73);
  1010. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_ON);
  1011. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_L_OFF);
  1012. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_ON);
  1013. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_H_OFF);
  1014. this.groupBox17.Controls.Add(this.label78);
  1015. this.groupBox17.Controls.Add(this.label77);
  1016. this.groupBox17.Controls.Add(this.label76);
  1017. this.groupBox17.Controls.Add(this.label75);
  1018. this.groupBox17.Controls.Add(this.label72);
  1019. this.groupBox17.Controls.Add(this.label71);
  1020. this.groupBox17.Controls.Add(this.label70);
  1021. this.groupBox17.Controls.Add(this.label69);
  1022. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_ON);
  1023. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF);
  1024. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_ON);
  1025. this.groupBox17.Controls.Add(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF);
  1026. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_ON);
  1027. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_UL_OFF);
  1028. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_ON);
  1029. this.groupBox17.Controls.Add(this.pictureBox_PATH_3_5G_DL_OFF);
  1030. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_ON);
  1031. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_UL_OFF);
  1032. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_ON);
  1033. this.groupBox17.Controls.Add(this.pictureBox_PATH_2_1G_DL_OFF);
  1034. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_ON);
  1035. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_UL_OFF);
  1036. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_ON);
  1037. this.groupBox17.Controls.Add(this.pictureBox_PATH_1_8G_DL_OFF);
  1038. this.groupBox17.Location = new System.Drawing.Point(243, 76);
  1039. this.groupBox17.Name = "groupBox17";
  1040. this.groupBox17.Size = new System.Drawing.Size(924, 136);
  1041. this.groupBox17.TabIndex = 95;
  1042. this.groupBox17.TabStop = false;
  1043. this.groupBox17.Text = "Power";
  1044. this.groupBox17.Click += new System.EventHandler(this.Cusor_DeFocus);
  1045. //
  1046. // label74
  1047. //
  1048. this.label74.AutoSize = true;
  1049. this.label74.Location = new System.Drawing.Point(614, 15);
  1050. this.label74.Name = "label74";
  1051. this.label74.Size = new System.Drawing.Size(105, 12);
  1052. this.label74.TabIndex = 102;
  1053. this.label74.Text = "PATH_EN_3.5G_H";
  1054. //
  1055. // label73
  1056. //
  1057. this.label73.AutoSize = true;
  1058. this.label73.Location = new System.Drawing.Point(615, 71);
  1059. this.label73.Name = "label73";
  1060. this.label73.Size = new System.Drawing.Size(104, 12);
  1061. this.label73.TabIndex = 103;
  1062. this.label73.Text = "PATH_EN_3.5G_L";
  1063. //
  1064. // pictureBox_PATH_3_5G_L_ON
  1065. //
  1066. this.pictureBox_PATH_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_ON.Image")));
  1067. this.pictureBox_PATH_3_5G_L_ON.Location = new System.Drawing.Point(640, 90);
  1068. this.pictureBox_PATH_3_5G_L_ON.Name = "pictureBox_PATH_3_5G_L_ON";
  1069. this.pictureBox_PATH_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1070. this.pictureBox_PATH_3_5G_L_ON.TabIndex = 98;
  1071. this.pictureBox_PATH_3_5G_L_ON.TabStop = false;
  1072. this.pictureBox_PATH_3_5G_L_ON.Tag = "15";
  1073. this.pictureBox_PATH_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1074. //
  1075. // pictureBox_PATH_3_5G_L_OFF
  1076. //
  1077. this.pictureBox_PATH_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_L_OFF.Image")));
  1078. this.pictureBox_PATH_3_5G_L_OFF.Location = new System.Drawing.Point(640, 90);
  1079. this.pictureBox_PATH_3_5G_L_OFF.Name = "pictureBox_PATH_3_5G_L_OFF";
  1080. this.pictureBox_PATH_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1081. this.pictureBox_PATH_3_5G_L_OFF.TabIndex = 99;
  1082. this.pictureBox_PATH_3_5G_L_OFF.TabStop = false;
  1083. this.pictureBox_PATH_3_5G_L_OFF.Tag = "16";
  1084. this.pictureBox_PATH_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1085. //
  1086. // pictureBox_PATH_3_5G_H_ON
  1087. //
  1088. this.pictureBox_PATH_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_ON.Image")));
  1089. this.pictureBox_PATH_3_5G_H_ON.Location = new System.Drawing.Point(640, 30);
  1090. this.pictureBox_PATH_3_5G_H_ON.Name = "pictureBox_PATH_3_5G_H_ON";
  1091. this.pictureBox_PATH_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1092. this.pictureBox_PATH_3_5G_H_ON.TabIndex = 100;
  1093. this.pictureBox_PATH_3_5G_H_ON.TabStop = false;
  1094. this.pictureBox_PATH_3_5G_H_ON.Tag = "13";
  1095. this.pictureBox_PATH_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1096. //
  1097. // pictureBox_PATH_3_5G_H_OFF
  1098. //
  1099. this.pictureBox_PATH_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_H_OFF.Image")));
  1100. this.pictureBox_PATH_3_5G_H_OFF.Location = new System.Drawing.Point(640, 30);
  1101. this.pictureBox_PATH_3_5G_H_OFF.Name = "pictureBox_PATH_3_5G_H_OFF";
  1102. this.pictureBox_PATH_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1103. this.pictureBox_PATH_3_5G_H_OFF.TabIndex = 101;
  1104. this.pictureBox_PATH_3_5G_H_OFF.TabStop = false;
  1105. this.pictureBox_PATH_3_5G_H_OFF.Tag = "14";
  1106. this.pictureBox_PATH_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1107. //
  1108. // label78
  1109. //
  1110. this.label78.AutoSize = true;
  1111. this.label78.Location = new System.Drawing.Point(784, 15);
  1112. this.label78.Name = "label78";
  1113. this.label78.Size = new System.Drawing.Size(125, 12);
  1114. this.label78.TabIndex = 97;
  1115. this.label78.Text = "PLL_ON/OFF_3.5G_H";
  1116. //
  1117. // label77
  1118. //
  1119. this.label77.AutoSize = true;
  1120. this.label77.Location = new System.Drawing.Point(784, 70);
  1121. this.label77.Name = "label77";
  1122. this.label77.Size = new System.Drawing.Size(124, 12);
  1123. this.label77.TabIndex = 97;
  1124. this.label77.Text = "PLL_ON/OFF_3.5G_L";
  1125. //
  1126. // label76
  1127. //
  1128. this.label76.AutoSize = true;
  1129. this.label76.Location = new System.Drawing.Point(423, 70);
  1130. this.label76.Name = "label76";
  1131. this.label76.Size = new System.Drawing.Size(112, 12);
  1132. this.label76.TabIndex = 97;
  1133. this.label76.Text = "PATH_EN_3.5G_UL";
  1134. //
  1135. // label75
  1136. //
  1137. this.label75.AutoSize = true;
  1138. this.label75.Location = new System.Drawing.Point(423, 15);
  1139. this.label75.Name = "label75";
  1140. this.label75.Size = new System.Drawing.Size(112, 12);
  1141. this.label75.TabIndex = 97;
  1142. this.label75.Text = "PATH_EN_3.5G_DL";
  1143. //
  1144. // label72
  1145. //
  1146. this.label72.AutoSize = true;
  1147. this.label72.Location = new System.Drawing.Point(246, 70);
  1148. this.label72.Name = "label72";
  1149. this.label72.Size = new System.Drawing.Size(112, 12);
  1150. this.label72.TabIndex = 97;
  1151. this.label72.Text = "PATH_EN_2.1G_UL";
  1152. //
  1153. // label71
  1154. //
  1155. this.label71.AutoSize = true;
  1156. this.label71.Location = new System.Drawing.Point(246, 15);
  1157. this.label71.Name = "label71";
  1158. this.label71.Size = new System.Drawing.Size(112, 12);
  1159. this.label71.TabIndex = 97;
  1160. this.label71.Text = "PATH_EN_2.1G_DL";
  1161. //
  1162. // label70
  1163. //
  1164. this.label70.AutoSize = true;
  1165. this.label70.Location = new System.Drawing.Point(66, 70);
  1166. this.label70.Name = "label70";
  1167. this.label70.Size = new System.Drawing.Size(112, 12);
  1168. this.label70.TabIndex = 97;
  1169. this.label70.Text = "PATH_EN_1.8G_UL";
  1170. //
  1171. // label69
  1172. //
  1173. this.label69.AutoSize = true;
  1174. this.label69.Location = new System.Drawing.Point(67, 15);
  1175. this.label69.Name = "label69";
  1176. this.label69.Size = new System.Drawing.Size(112, 12);
  1177. this.label69.TabIndex = 97;
  1178. this.label69.Text = "PATH_EN_1.8G_DL";
  1179. //
  1180. // pictureBox_PLL_ON_OFF_3_5G_L_ON
  1181. //
  1182. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_ON.Image")));
  1183. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Location = new System.Drawing.Point(820, 90);
  1184. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_L_ON";
  1185. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Size = new System.Drawing.Size(38, 36);
  1186. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabIndex = 96;
  1187. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.TabStop = false;
  1188. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Tag = "19";
  1189. this.pictureBox_PLL_ON_OFF_3_5G_L_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1190. //
  1191. // pictureBox_PLL_ON_OFF_3_5G_L_OFF
  1192. //
  1193. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_L_OFF.Image")));
  1194. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Location = new System.Drawing.Point(820, 90);
  1195. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_L_OFF";
  1196. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Size = new System.Drawing.Size(38, 36);
  1197. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabIndex = 96;
  1198. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.TabStop = false;
  1199. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Tag = "20";
  1200. this.pictureBox_PLL_ON_OFF_3_5G_L_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1201. //
  1202. // pictureBox_PLL_ON_OFF_3_5G_H_ON
  1203. //
  1204. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_ON.Image")));
  1205. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Location = new System.Drawing.Point(820, 30);
  1206. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Name = "pictureBox_PLL_ON_OFF_3_5G_H_ON";
  1207. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Size = new System.Drawing.Size(38, 36);
  1208. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabIndex = 96;
  1209. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.TabStop = false;
  1210. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Tag = "17";
  1211. this.pictureBox_PLL_ON_OFF_3_5G_H_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1212. //
  1213. // pictureBox_PLL_ON_OFF_3_5G_H_OFF
  1214. //
  1215. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PLL_ON_OFF_3_5G_H_OFF.Image")));
  1216. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Location = new System.Drawing.Point(820, 30);
  1217. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Name = "pictureBox_PLL_ON_OFF_3_5G_H_OFF";
  1218. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Size = new System.Drawing.Size(38, 36);
  1219. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabIndex = 96;
  1220. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.TabStop = false;
  1221. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Tag = "18";
  1222. this.pictureBox_PLL_ON_OFF_3_5G_H_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1223. //
  1224. // pictureBox_PATH_3_5G_UL_ON
  1225. //
  1226. this.pictureBox_PATH_3_5G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_ON.Image")));
  1227. this.pictureBox_PATH_3_5G_UL_ON.Location = new System.Drawing.Point(460, 90);
  1228. this.pictureBox_PATH_3_5G_UL_ON.Name = "pictureBox_PATH_3_5G_UL_ON";
  1229. this.pictureBox_PATH_3_5G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1230. this.pictureBox_PATH_3_5G_UL_ON.TabIndex = 96;
  1231. this.pictureBox_PATH_3_5G_UL_ON.TabStop = false;
  1232. this.pictureBox_PATH_3_5G_UL_ON.Tag = "11";
  1233. this.pictureBox_PATH_3_5G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1234. //
  1235. // pictureBox_PATH_3_5G_UL_OFF
  1236. //
  1237. this.pictureBox_PATH_3_5G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_UL_OFF.Image")));
  1238. this.pictureBox_PATH_3_5G_UL_OFF.Location = new System.Drawing.Point(460, 90);
  1239. this.pictureBox_PATH_3_5G_UL_OFF.Name = "pictureBox_PATH_3_5G_UL_OFF";
  1240. this.pictureBox_PATH_3_5G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1241. this.pictureBox_PATH_3_5G_UL_OFF.TabIndex = 96;
  1242. this.pictureBox_PATH_3_5G_UL_OFF.TabStop = false;
  1243. this.pictureBox_PATH_3_5G_UL_OFF.Tag = "12";
  1244. this.pictureBox_PATH_3_5G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1245. //
  1246. // pictureBox_PATH_3_5G_DL_ON
  1247. //
  1248. this.pictureBox_PATH_3_5G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_ON.Image")));
  1249. this.pictureBox_PATH_3_5G_DL_ON.Location = new System.Drawing.Point(460, 30);
  1250. this.pictureBox_PATH_3_5G_DL_ON.Name = "pictureBox_PATH_3_5G_DL_ON";
  1251. this.pictureBox_PATH_3_5G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1252. this.pictureBox_PATH_3_5G_DL_ON.TabIndex = 96;
  1253. this.pictureBox_PATH_3_5G_DL_ON.TabStop = false;
  1254. this.pictureBox_PATH_3_5G_DL_ON.Tag = "9";
  1255. this.pictureBox_PATH_3_5G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1256. //
  1257. // pictureBox_PATH_3_5G_DL_OFF
  1258. //
  1259. this.pictureBox_PATH_3_5G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_3_5G_DL_OFF.Image")));
  1260. this.pictureBox_PATH_3_5G_DL_OFF.Location = new System.Drawing.Point(460, 30);
  1261. this.pictureBox_PATH_3_5G_DL_OFF.Name = "pictureBox_PATH_3_5G_DL_OFF";
  1262. this.pictureBox_PATH_3_5G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1263. this.pictureBox_PATH_3_5G_DL_OFF.TabIndex = 96;
  1264. this.pictureBox_PATH_3_5G_DL_OFF.TabStop = false;
  1265. this.pictureBox_PATH_3_5G_DL_OFF.Tag = "10";
  1266. this.pictureBox_PATH_3_5G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1267. //
  1268. // pictureBox_PATH_2_1G_UL_ON
  1269. //
  1270. this.pictureBox_PATH_2_1G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_ON.Image")));
  1271. this.pictureBox_PATH_2_1G_UL_ON.Location = new System.Drawing.Point(280, 90);
  1272. this.pictureBox_PATH_2_1G_UL_ON.Name = "pictureBox_PATH_2_1G_UL_ON";
  1273. this.pictureBox_PATH_2_1G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1274. this.pictureBox_PATH_2_1G_UL_ON.TabIndex = 96;
  1275. this.pictureBox_PATH_2_1G_UL_ON.TabStop = false;
  1276. this.pictureBox_PATH_2_1G_UL_ON.Tag = "7";
  1277. this.pictureBox_PATH_2_1G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1278. //
  1279. // pictureBox_PATH_2_1G_UL_OFF
  1280. //
  1281. this.pictureBox_PATH_2_1G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_UL_OFF.Image")));
  1282. this.pictureBox_PATH_2_1G_UL_OFF.Location = new System.Drawing.Point(280, 90);
  1283. this.pictureBox_PATH_2_1G_UL_OFF.Name = "pictureBox_PATH_2_1G_UL_OFF";
  1284. this.pictureBox_PATH_2_1G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1285. this.pictureBox_PATH_2_1G_UL_OFF.TabIndex = 96;
  1286. this.pictureBox_PATH_2_1G_UL_OFF.TabStop = false;
  1287. this.pictureBox_PATH_2_1G_UL_OFF.Tag = "8";
  1288. this.pictureBox_PATH_2_1G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1289. //
  1290. // pictureBox_PATH_2_1G_DL_ON
  1291. //
  1292. this.pictureBox_PATH_2_1G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_ON.Image")));
  1293. this.pictureBox_PATH_2_1G_DL_ON.Location = new System.Drawing.Point(280, 30);
  1294. this.pictureBox_PATH_2_1G_DL_ON.Name = "pictureBox_PATH_2_1G_DL_ON";
  1295. this.pictureBox_PATH_2_1G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1296. this.pictureBox_PATH_2_1G_DL_ON.TabIndex = 96;
  1297. this.pictureBox_PATH_2_1G_DL_ON.TabStop = false;
  1298. this.pictureBox_PATH_2_1G_DL_ON.Tag = "5";
  1299. this.pictureBox_PATH_2_1G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1300. //
  1301. // pictureBox_PATH_2_1G_DL_OFF
  1302. //
  1303. this.pictureBox_PATH_2_1G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_2_1G_DL_OFF.Image")));
  1304. this.pictureBox_PATH_2_1G_DL_OFF.Location = new System.Drawing.Point(280, 30);
  1305. this.pictureBox_PATH_2_1G_DL_OFF.Name = "pictureBox_PATH_2_1G_DL_OFF";
  1306. this.pictureBox_PATH_2_1G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1307. this.pictureBox_PATH_2_1G_DL_OFF.TabIndex = 96;
  1308. this.pictureBox_PATH_2_1G_DL_OFF.TabStop = false;
  1309. this.pictureBox_PATH_2_1G_DL_OFF.Tag = "6";
  1310. this.pictureBox_PATH_2_1G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1311. //
  1312. // pictureBox_PATH_1_8G_UL_ON
  1313. //
  1314. this.pictureBox_PATH_1_8G_UL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_ON.Image")));
  1315. this.pictureBox_PATH_1_8G_UL_ON.Location = new System.Drawing.Point(100, 90);
  1316. this.pictureBox_PATH_1_8G_UL_ON.Name = "pictureBox_PATH_1_8G_UL_ON";
  1317. this.pictureBox_PATH_1_8G_UL_ON.Size = new System.Drawing.Size(38, 36);
  1318. this.pictureBox_PATH_1_8G_UL_ON.TabIndex = 96;
  1319. this.pictureBox_PATH_1_8G_UL_ON.TabStop = false;
  1320. this.pictureBox_PATH_1_8G_UL_ON.Tag = "3";
  1321. this.pictureBox_PATH_1_8G_UL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1322. //
  1323. // pictureBox_PATH_1_8G_UL_OFF
  1324. //
  1325. this.pictureBox_PATH_1_8G_UL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_UL_OFF.Image")));
  1326. this.pictureBox_PATH_1_8G_UL_OFF.Location = new System.Drawing.Point(100, 90);
  1327. this.pictureBox_PATH_1_8G_UL_OFF.Name = "pictureBox_PATH_1_8G_UL_OFF";
  1328. this.pictureBox_PATH_1_8G_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1329. this.pictureBox_PATH_1_8G_UL_OFF.TabIndex = 96;
  1330. this.pictureBox_PATH_1_8G_UL_OFF.TabStop = false;
  1331. this.pictureBox_PATH_1_8G_UL_OFF.Tag = "4";
  1332. this.pictureBox_PATH_1_8G_UL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1333. //
  1334. // pictureBox_PATH_1_8G_DL_ON
  1335. //
  1336. this.pictureBox_PATH_1_8G_DL_ON.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_ON.Image")));
  1337. this.pictureBox_PATH_1_8G_DL_ON.Location = new System.Drawing.Point(100, 30);
  1338. this.pictureBox_PATH_1_8G_DL_ON.Name = "pictureBox_PATH_1_8G_DL_ON";
  1339. this.pictureBox_PATH_1_8G_DL_ON.Size = new System.Drawing.Size(38, 36);
  1340. this.pictureBox_PATH_1_8G_DL_ON.TabIndex = 96;
  1341. this.pictureBox_PATH_1_8G_DL_ON.TabStop = false;
  1342. this.pictureBox_PATH_1_8G_DL_ON.Tag = "1";
  1343. this.pictureBox_PATH_1_8G_DL_ON.Click += new System.EventHandler(this.Power_OnOff_Set);
  1344. //
  1345. // pictureBox_PATH_1_8G_DL_OFF
  1346. //
  1347. this.pictureBox_PATH_1_8G_DL_OFF.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_PATH_1_8G_DL_OFF.Image")));
  1348. this.pictureBox_PATH_1_8G_DL_OFF.Location = new System.Drawing.Point(100, 30);
  1349. this.pictureBox_PATH_1_8G_DL_OFF.Name = "pictureBox_PATH_1_8G_DL_OFF";
  1350. this.pictureBox_PATH_1_8G_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1351. this.pictureBox_PATH_1_8G_DL_OFF.TabIndex = 96;
  1352. this.pictureBox_PATH_1_8G_DL_OFF.TabStop = false;
  1353. this.pictureBox_PATH_1_8G_DL_OFF.Tag = "2";
  1354. this.pictureBox_PATH_1_8G_DL_OFF.Click += new System.EventHandler(this.Power_OnOff_Set);
  1355. //
  1356. // label79
  1357. //
  1358. this.label79.AutoSize = true;
  1359. this.label79.Font = new System.Drawing.Font("굴림", 36F, System.Drawing.FontStyle.Bold);
  1360. this.label79.Location = new System.Drawing.Point(499, 20);
  1361. this.label79.Name = "label79";
  1362. this.label79.Size = new System.Drawing.Size(501, 48);
  1363. this.label79.TabIndex = 97;
  1364. this.label79.Text = "RF-TRIO-3.5G-RFU";
  1365. //
  1366. // label80
  1367. //
  1368. this.label80.AutoSize = true;
  1369. this.label80.Location = new System.Drawing.Point(989, 66);
  1370. this.label80.Name = "label80";
  1371. this.label80.Size = new System.Drawing.Size(178, 12);
  1372. this.label80.TabIndex = 98;
  1373. this.label80.Text = "Copyright (c) 2019. BLUECELL";
  1374. //
  1375. // groupBox10
  1376. //
  1377. this.groupBox10.Controls.Add(this.groupBox11);
  1378. this.groupBox10.Controls.Add(this.groupBox15);
  1379. this.groupBox10.Controls.Add(this.groupBox16);
  1380. this.groupBox10.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1381. this.groupBox10.Location = new System.Drawing.Point(243, 495);
  1382. this.groupBox10.Name = "groupBox10";
  1383. this.groupBox10.Size = new System.Drawing.Size(924, 157);
  1384. this.groupBox10.TabIndex = 102;
  1385. this.groupBox10.TabStop = false;
  1386. this.groupBox10.Text = "PLL(MHz)";
  1387. this.groupBox10.Click += new System.EventHandler(this.Cusor_DeFocus);
  1388. //
  1389. // groupBox11
  1390. //
  1391. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_UL);
  1392. this.groupBox11.Controls.Add(this.numericUpDown_PLL_3_5G_DL);
  1393. this.groupBox11.Controls.Add(this.label32);
  1394. this.groupBox11.Controls.Add(this.label33);
  1395. this.groupBox11.Location = new System.Drawing.Point(687, 40);
  1396. this.groupBox11.Name = "groupBox11";
  1397. this.groupBox11.Size = new System.Drawing.Size(215, 79);
  1398. this.groupBox11.TabIndex = 94;
  1399. this.groupBox11.TabStop = false;
  1400. this.groupBox11.Text = "3.5GHz";
  1401. this.groupBox11.Click += new System.EventHandler(this.Cusor_DeFocus);
  1402. //
  1403. // numericUpDown_PLL_3_5G_UL
  1404. //
  1405. this.numericUpDown_PLL_3_5G_UL.DecimalPlaces = 1;
  1406. this.numericUpDown_PLL_3_5G_UL.Increment = new decimal(new int[] {
  1407. 1,
  1408. 0,
  1409. 0,
  1410. 65536});
  1411. this.numericUpDown_PLL_3_5G_UL.Location = new System.Drawing.Point(132, 47);
  1412. this.numericUpDown_PLL_3_5G_UL.Maximum = new decimal(new int[] {
  1413. 3000,
  1414. 0,
  1415. 0,
  1416. 0});
  1417. this.numericUpDown_PLL_3_5G_UL.Name = "numericUpDown_PLL_3_5G_UL";
  1418. this.numericUpDown_PLL_3_5G_UL.Size = new System.Drawing.Size(71, 21);
  1419. this.numericUpDown_PLL_3_5G_UL.TabIndex = 1;
  1420. this.numericUpDown_PLL_3_5G_UL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1421. this.numericUpDown_PLL_3_5G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1422. this.numericUpDown_PLL_3_5G_UL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1423. //
  1424. // numericUpDown_PLL_3_5G_DL
  1425. //
  1426. this.numericUpDown_PLL_3_5G_DL.DecimalPlaces = 1;
  1427. this.numericUpDown_PLL_3_5G_DL.Increment = new decimal(new int[] {
  1428. 1,
  1429. 0,
  1430. 0,
  1431. 65536});
  1432. this.numericUpDown_PLL_3_5G_DL.Location = new System.Drawing.Point(132, 19);
  1433. this.numericUpDown_PLL_3_5G_DL.Maximum = new decimal(new int[] {
  1434. 3000,
  1435. 0,
  1436. 0,
  1437. 0});
  1438. this.numericUpDown_PLL_3_5G_DL.Name = "numericUpDown_PLL_3_5G_DL";
  1439. this.numericUpDown_PLL_3_5G_DL.Size = new System.Drawing.Size(71, 21);
  1440. this.numericUpDown_PLL_3_5G_DL.TabIndex = 1;
  1441. this.numericUpDown_PLL_3_5G_DL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1442. this.numericUpDown_PLL_3_5G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1443. this.numericUpDown_PLL_3_5G_DL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1444. //
  1445. // label32
  1446. //
  1447. this.label32.AutoSize = true;
  1448. this.label32.Location = new System.Drawing.Point(6, 23);
  1449. this.label32.Name = "label32";
  1450. this.label32.Size = new System.Drawing.Size(79, 12);
  1451. this.label32.TabIndex = 0;
  1452. this.label32.Text = "PLL_3.5G_DL";
  1453. //
  1454. // label33
  1455. //
  1456. this.label33.AutoSize = true;
  1457. this.label33.Location = new System.Drawing.Point(6, 53);
  1458. this.label33.Name = "label33";
  1459. this.label33.Size = new System.Drawing.Size(79, 12);
  1460. this.label33.TabIndex = 0;
  1461. this.label33.Text = "PLL_3.5G_UL";
  1462. //
  1463. // groupBox15
  1464. //
  1465. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_UL);
  1466. this.groupBox15.Controls.Add(this.numericUpDown_PLL_2_1G_DL);
  1467. this.groupBox15.Controls.Add(this.label47);
  1468. this.groupBox15.Controls.Add(this.label48);
  1469. this.groupBox15.Location = new System.Drawing.Point(349, 34);
  1470. this.groupBox15.Name = "groupBox15";
  1471. this.groupBox15.Size = new System.Drawing.Size(215, 85);
  1472. this.groupBox15.TabIndex = 98;
  1473. this.groupBox15.TabStop = false;
  1474. this.groupBox15.Text = "2.1GHz";
  1475. this.groupBox15.Click += new System.EventHandler(this.Cusor_DeFocus);
  1476. //
  1477. // numericUpDown_PLL_2_1G_UL
  1478. //
  1479. this.numericUpDown_PLL_2_1G_UL.DecimalPlaces = 1;
  1480. this.numericUpDown_PLL_2_1G_UL.Increment = new decimal(new int[] {
  1481. 1,
  1482. 0,
  1483. 0,
  1484. 65536});
  1485. this.numericUpDown_PLL_2_1G_UL.Location = new System.Drawing.Point(132, 47);
  1486. this.numericUpDown_PLL_2_1G_UL.Maximum = new decimal(new int[] {
  1487. 3000,
  1488. 0,
  1489. 0,
  1490. 0});
  1491. this.numericUpDown_PLL_2_1G_UL.Name = "numericUpDown_PLL_2_1G_UL";
  1492. this.numericUpDown_PLL_2_1G_UL.Size = new System.Drawing.Size(71, 21);
  1493. this.numericUpDown_PLL_2_1G_UL.TabIndex = 1;
  1494. this.numericUpDown_PLL_2_1G_UL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1495. this.numericUpDown_PLL_2_1G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1496. this.numericUpDown_PLL_2_1G_UL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1497. //
  1498. // numericUpDown_PLL_2_1G_DL
  1499. //
  1500. this.numericUpDown_PLL_2_1G_DL.DecimalPlaces = 1;
  1501. this.numericUpDown_PLL_2_1G_DL.Increment = new decimal(new int[] {
  1502. 1,
  1503. 0,
  1504. 0,
  1505. 65536});
  1506. this.numericUpDown_PLL_2_1G_DL.Location = new System.Drawing.Point(132, 19);
  1507. this.numericUpDown_PLL_2_1G_DL.Maximum = new decimal(new int[] {
  1508. 3000,
  1509. 0,
  1510. 0,
  1511. 0});
  1512. this.numericUpDown_PLL_2_1G_DL.Name = "numericUpDown_PLL_2_1G_DL";
  1513. this.numericUpDown_PLL_2_1G_DL.Size = new System.Drawing.Size(71, 21);
  1514. this.numericUpDown_PLL_2_1G_DL.TabIndex = 1;
  1515. this.numericUpDown_PLL_2_1G_DL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1516. this.numericUpDown_PLL_2_1G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1517. this.numericUpDown_PLL_2_1G_DL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1518. //
  1519. // label47
  1520. //
  1521. this.label47.AutoSize = true;
  1522. this.label47.Location = new System.Drawing.Point(6, 23);
  1523. this.label47.Name = "label47";
  1524. this.label47.Size = new System.Drawing.Size(79, 12);
  1525. this.label47.TabIndex = 0;
  1526. this.label47.Text = "PLL_2.1G_DL";
  1527. //
  1528. // label48
  1529. //
  1530. this.label48.AutoSize = true;
  1531. this.label48.Location = new System.Drawing.Point(6, 53);
  1532. this.label48.Name = "label48";
  1533. this.label48.Size = new System.Drawing.Size(79, 12);
  1534. this.label48.TabIndex = 0;
  1535. this.label48.Text = "PLL_2.1G_UL";
  1536. //
  1537. // groupBox16
  1538. //
  1539. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_UL);
  1540. this.groupBox16.Controls.Add(this.numericUpDown_PLL_1_8G_DL);
  1541. this.groupBox16.Controls.Add(this.label49);
  1542. this.groupBox16.Controls.Add(this.label50);
  1543. this.groupBox16.Location = new System.Drawing.Point(23, 36);
  1544. this.groupBox16.Name = "groupBox16";
  1545. this.groupBox16.Size = new System.Drawing.Size(215, 85);
  1546. this.groupBox16.TabIndex = 99;
  1547. this.groupBox16.TabStop = false;
  1548. this.groupBox16.Text = "1.8GHz";
  1549. this.groupBox16.Click += new System.EventHandler(this.Cusor_DeFocus);
  1550. //
  1551. // numericUpDown_PLL_1_8G_UL
  1552. //
  1553. this.numericUpDown_PLL_1_8G_UL.DecimalPlaces = 1;
  1554. this.numericUpDown_PLL_1_8G_UL.Increment = new decimal(new int[] {
  1555. 1,
  1556. 0,
  1557. 0,
  1558. 65536});
  1559. this.numericUpDown_PLL_1_8G_UL.Location = new System.Drawing.Point(132, 47);
  1560. this.numericUpDown_PLL_1_8G_UL.Maximum = new decimal(new int[] {
  1561. 3000,
  1562. 0,
  1563. 0,
  1564. 0});
  1565. this.numericUpDown_PLL_1_8G_UL.Name = "numericUpDown_PLL_1_8G_UL";
  1566. this.numericUpDown_PLL_1_8G_UL.Size = new System.Drawing.Size(71, 21);
  1567. this.numericUpDown_PLL_1_8G_UL.TabIndex = 1;
  1568. this.numericUpDown_PLL_1_8G_UL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1569. this.numericUpDown_PLL_1_8G_UL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1570. this.numericUpDown_PLL_1_8G_UL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1571. //
  1572. // numericUpDown_PLL_1_8G_DL
  1573. //
  1574. this.numericUpDown_PLL_1_8G_DL.DecimalPlaces = 1;
  1575. this.numericUpDown_PLL_1_8G_DL.Increment = new decimal(new int[] {
  1576. 1,
  1577. 0,
  1578. 0,
  1579. 65536});
  1580. this.numericUpDown_PLL_1_8G_DL.Location = new System.Drawing.Point(132, 19);
  1581. this.numericUpDown_PLL_1_8G_DL.Maximum = new decimal(new int[] {
  1582. 3000,
  1583. 0,
  1584. 0,
  1585. 0});
  1586. this.numericUpDown_PLL_1_8G_DL.Name = "numericUpDown_PLL_1_8G_DL";
  1587. this.numericUpDown_PLL_1_8G_DL.Size = new System.Drawing.Size(71, 21);
  1588. this.numericUpDown_PLL_1_8G_DL.TabIndex = 1;
  1589. this.numericUpDown_PLL_1_8G_DL.Enter += new System.EventHandler(this.Activi_Change__Setting);
  1590. this.numericUpDown_PLL_1_8G_DL.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1591. this.numericUpDown_PLL_1_8G_DL.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  1592. //
  1593. // label49
  1594. //
  1595. this.label49.AutoSize = true;
  1596. this.label49.Location = new System.Drawing.Point(6, 23);
  1597. this.label49.Name = "label49";
  1598. this.label49.Size = new System.Drawing.Size(79, 12);
  1599. this.label49.TabIndex = 0;
  1600. this.label49.Text = "PLL_1.8G_DL";
  1601. //
  1602. // label50
  1603. //
  1604. this.label50.AutoSize = true;
  1605. this.label50.Location = new System.Drawing.Point(6, 53);
  1606. this.label50.Name = "label50";
  1607. this.label50.Size = new System.Drawing.Size(79, 12);
  1608. this.label50.TabIndex = 0;
  1609. this.label50.Text = "PLL_1.8G_UL";
  1610. //
  1611. // timer
  1612. //
  1613. this.timer.Interval = 500;
  1614. this.timer.Tick += new System.EventHandler(this.timer_Tick);
  1615. //
  1616. // groupBox12
  1617. //
  1618. this.groupBox12.Controls.Add(this.pictureBox_R_TX);
  1619. this.groupBox12.Controls.Add(this.pictureBox_G_TX);
  1620. this.groupBox12.Controls.Add(this.pictureBox_R_RX);
  1621. this.groupBox12.Controls.Add(this.pictureBox_G_RX);
  1622. this.groupBox12.Location = new System.Drawing.Point(12, 12);
  1623. this.groupBox12.Name = "groupBox12";
  1624. this.groupBox12.Size = new System.Drawing.Size(225, 66);
  1625. this.groupBox12.TabIndex = 103;
  1626. this.groupBox12.TabStop = false;
  1627. this.groupBox12.Text = "DATA Status";
  1628. this.groupBox12.Click += new System.EventHandler(this.Cusor_DeFocus);
  1629. //
  1630. // pictureBox_R_TX
  1631. //
  1632. this.pictureBox_R_TX.Image = global::Basic_Terminal.Properties.Resources.TX_Red_Image;
  1633. this.pictureBox_R_TX.Location = new System.Drawing.Point(31, 20);
  1634. this.pictureBox_R_TX.Name = "pictureBox_R_TX";
  1635. this.pictureBox_R_TX.Size = new System.Drawing.Size(38, 36);
  1636. this.pictureBox_R_TX.TabIndex = 97;
  1637. this.pictureBox_R_TX.TabStop = false;
  1638. //
  1639. // pictureBox_G_TX
  1640. //
  1641. this.pictureBox_G_TX.Image = global::Basic_Terminal.Properties.Resources.TX_IMAGE;
  1642. this.pictureBox_G_TX.Location = new System.Drawing.Point(31, 20);
  1643. this.pictureBox_G_TX.Name = "pictureBox_G_TX";
  1644. this.pictureBox_G_TX.Size = new System.Drawing.Size(38, 36);
  1645. this.pictureBox_G_TX.TabIndex = 96;
  1646. this.pictureBox_G_TX.TabStop = false;
  1647. //
  1648. // pictureBox_R_RX
  1649. //
  1650. this.pictureBox_R_RX.Image = global::Basic_Terminal.Properties.Resources.RX_IMAGE;
  1651. this.pictureBox_R_RX.Location = new System.Drawing.Point(157, 20);
  1652. this.pictureBox_R_RX.Name = "pictureBox_R_RX";
  1653. this.pictureBox_R_RX.Size = new System.Drawing.Size(38, 36);
  1654. this.pictureBox_R_RX.TabIndex = 96;
  1655. this.pictureBox_R_RX.TabStop = false;
  1656. //
  1657. // pictureBox_G_RX
  1658. //
  1659. this.pictureBox_G_RX.Image = global::Basic_Terminal.Properties.Resources.RX_GREEN_IMAGE;
  1660. this.pictureBox_G_RX.Location = new System.Drawing.Point(157, 20);
  1661. this.pictureBox_G_RX.Name = "pictureBox_G_RX";
  1662. this.pictureBox_G_RX.Size = new System.Drawing.Size(38, 36);
  1663. this.pictureBox_G_RX.TabIndex = 98;
  1664. this.pictureBox_G_RX.TabStop = false;
  1665. //
  1666. // pictureBox15
  1667. //
  1668. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  1669. this.pictureBox15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1670. this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
  1671. this.pictureBox15.Location = new System.Drawing.Point(1017, 12);
  1672. this.pictureBox15.Name = "pictureBox15";
  1673. this.pictureBox15.Size = new System.Drawing.Size(150, 42);
  1674. this.pictureBox15.TabIndex = 99;
  1675. this.pictureBox15.TabStop = false;
  1676. //
  1677. // groupBox_TDD
  1678. //
  1679. this.groupBox_TDD.Controls.Add(this.label24);
  1680. this.groupBox_TDD.Controls.Add(this.label22);
  1681. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_OFF);
  1682. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_DL_ON);
  1683. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_ON);
  1684. this.groupBox_TDD.Controls.Add(this.pictureBox_TDD_T_SYNC_UL_OFF);
  1685. this.groupBox_TDD.Location = new System.Drawing.Point(12, 398);
  1686. this.groupBox_TDD.Name = "groupBox_TDD";
  1687. this.groupBox_TDD.Size = new System.Drawing.Size(225, 74);
  1688. this.groupBox_TDD.TabIndex = 107;
  1689. this.groupBox_TDD.TabStop = false;
  1690. this.groupBox_TDD.Text = "Tdd";
  1691. this.groupBox_TDD.Click += new System.EventHandler(this.Cusor_DeFocus);
  1692. //
  1693. // label24
  1694. //
  1695. this.label24.AutoSize = true;
  1696. this.label24.Location = new System.Drawing.Point(144, 13);
  1697. this.label24.Name = "label24";
  1698. this.label24.Size = new System.Drawing.Size(74, 12);
  1699. this.label24.TabIndex = 103;
  1700. this.label24.Text = "T-SYNC_UL";
  1701. //
  1702. // label22
  1703. //
  1704. this.label22.AutoSize = true;
  1705. this.label22.Location = new System.Drawing.Point(19, 13);
  1706. this.label22.Name = "label22";
  1707. this.label22.Size = new System.Drawing.Size(74, 12);
  1708. this.label22.TabIndex = 103;
  1709. this.label22.Text = "T-SYNC_DL";
  1710. //
  1711. // pictureBox_TDD_T_SYNC_DL_OFF
  1712. //
  1713. this.pictureBox_TDD_T_SYNC_DL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1714. this.pictureBox_TDD_T_SYNC_DL_OFF.Location = new System.Drawing.Point(32, 25);
  1715. this.pictureBox_TDD_T_SYNC_DL_OFF.Name = "pictureBox_TDD_T_SYNC_DL_OFF";
  1716. this.pictureBox_TDD_T_SYNC_DL_OFF.Size = new System.Drawing.Size(38, 36);
  1717. this.pictureBox_TDD_T_SYNC_DL_OFF.TabIndex = 99;
  1718. this.pictureBox_TDD_T_SYNC_DL_OFF.TabStop = false;
  1719. this.pictureBox_TDD_T_SYNC_DL_OFF.Tag = "1";
  1720. this.pictureBox_TDD_T_SYNC_DL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1721. //
  1722. // pictureBox_TDD_T_SYNC_DL_ON
  1723. //
  1724. this.pictureBox_TDD_T_SYNC_DL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1725. this.pictureBox_TDD_T_SYNC_DL_ON.Location = new System.Drawing.Point(32, 25);
  1726. this.pictureBox_TDD_T_SYNC_DL_ON.Name = "pictureBox_TDD_T_SYNC_DL_ON";
  1727. this.pictureBox_TDD_T_SYNC_DL_ON.Size = new System.Drawing.Size(38, 36);
  1728. this.pictureBox_TDD_T_SYNC_DL_ON.TabIndex = 96;
  1729. this.pictureBox_TDD_T_SYNC_DL_ON.TabStop = false;
  1730. this.pictureBox_TDD_T_SYNC_DL_ON.Tag = "0";
  1731. this.pictureBox_TDD_T_SYNC_DL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1732. //
  1733. // pictureBox_TDD_T_SYNC_UL_ON
  1734. //
  1735. this.pictureBox_TDD_T_SYNC_UL_ON.Image = global::Basic_Terminal.Properties.Resources.ON_IMAGE;
  1736. this.pictureBox_TDD_T_SYNC_UL_ON.Location = new System.Drawing.Point(158, 25);
  1737. this.pictureBox_TDD_T_SYNC_UL_ON.Name = "pictureBox_TDD_T_SYNC_UL_ON";
  1738. this.pictureBox_TDD_T_SYNC_UL_ON.Size = new System.Drawing.Size(38, 36);
  1739. this.pictureBox_TDD_T_SYNC_UL_ON.TabIndex = 96;
  1740. this.pictureBox_TDD_T_SYNC_UL_ON.TabStop = false;
  1741. this.pictureBox_TDD_T_SYNC_UL_ON.Tag = "1";
  1742. this.pictureBox_TDD_T_SYNC_UL_ON.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1743. //
  1744. // pictureBox_TDD_T_SYNC_UL_OFF
  1745. //
  1746. this.pictureBox_TDD_T_SYNC_UL_OFF.Image = global::Basic_Terminal.Properties.Resources.OFF_IMAGE;
  1747. this.pictureBox_TDD_T_SYNC_UL_OFF.Location = new System.Drawing.Point(158, 25);
  1748. this.pictureBox_TDD_T_SYNC_UL_OFF.Name = "pictureBox_TDD_T_SYNC_UL_OFF";
  1749. this.pictureBox_TDD_T_SYNC_UL_OFF.Size = new System.Drawing.Size(38, 36);
  1750. this.pictureBox_TDD_T_SYNC_UL_OFF.TabIndex = 100;
  1751. this.pictureBox_TDD_T_SYNC_UL_OFF.TabStop = false;
  1752. this.pictureBox_TDD_T_SYNC_UL_OFF.Tag = "0";
  1753. this.pictureBox_TDD_T_SYNC_UL_OFF.Click += new System.EventHandler(this.TDD_T_SYNC_Click);
  1754. //
  1755. // groupBox3
  1756. //
  1757. this.groupBox3.Controls.Add(this.label_28V_Det);
  1758. this.groupBox3.Controls.Add(this.label3_5GHz_UL_OUT);
  1759. this.groupBox3.Controls.Add(this.label2_1GHz_UL_OUT);
  1760. this.groupBox3.Controls.Add(this.label1_8GHz_UL_OUT);
  1761. this.groupBox3.Controls.Add(this.label_RFU_Temp);
  1762. this.groupBox3.Controls.Add(this.label3_5GHz_UL_IN);
  1763. this.groupBox3.Controls.Add(this.label2_1GHz_UL_IN);
  1764. this.groupBox3.Controls.Add(this.label1_8GHz_UL_IN);
  1765. this.groupBox3.Controls.Add(this.label3_5GHz_DL_OUT);
  1766. this.groupBox3.Controls.Add(this.label2_1GHz_DL_OUT);
  1767. this.groupBox3.Controls.Add(this.label1_8GHz_DL_OUT);
  1768. this.groupBox3.Controls.Add(this.label3_5GHz_DL_IN);
  1769. this.groupBox3.Controls.Add(this.label2_1GHz_DL_IN);
  1770. this.groupBox3.Controls.Add(this.label1_8GHz_DL_IN);
  1771. this.groupBox3.Controls.Add(this.label40);
  1772. this.groupBox3.Controls.Add(this.label34);
  1773. this.groupBox3.Controls.Add(this.label11);
  1774. this.groupBox3.Controls.Add(this.label58);
  1775. this.groupBox3.Controls.Add(this.label39);
  1776. this.groupBox3.Controls.Add(this.label31);
  1777. this.groupBox3.Controls.Add(this.label9);
  1778. this.groupBox3.Controls.Add(this.label51);
  1779. this.groupBox3.Controls.Add(this.label30);
  1780. this.groupBox3.Controls.Add(this.label8);
  1781. this.groupBox3.Controls.Add(this.label57);
  1782. this.groupBox3.Controls.Add(this.label29);
  1783. this.groupBox3.Controls.Add(this.label1);
  1784. this.groupBox3.Controls.Add(this.label_DET_1_8G_DL_IN);
  1785. this.groupBox3.Location = new System.Drawing.Point(12, 495);
  1786. this.groupBox3.Name = "groupBox3";
  1787. this.groupBox3.Size = new System.Drawing.Size(225, 320);
  1788. this.groupBox3.TabIndex = 108;
  1789. this.groupBox3.TabStop = false;
  1790. this.groupBox3.Text = "Voltage";
  1791. this.groupBox3.Click += new System.EventHandler(this.Cusor_DeFocus);
  1792. //
  1793. // label_28V_Det
  1794. //
  1795. this.label_28V_Det.AutoSize = true;
  1796. this.label_28V_Det.Location = new System.Drawing.Point(150, 295);
  1797. this.label_28V_Det.Name = "label_28V_Det";
  1798. this.label_28V_Det.Size = new System.Drawing.Size(29, 12);
  1799. this.label_28V_Det.TabIndex = 98;
  1800. this.label_28V_Det.Text = "0.0V";
  1801. //
  1802. // label3_5GHz_UL_OUT
  1803. //
  1804. this.label3_5GHz_UL_OUT.AutoSize = true;
  1805. this.label3_5GHz_UL_OUT.Location = new System.Drawing.Point(147, 253);
  1806. this.label3_5GHz_UL_OUT.Name = "label3_5GHz_UL_OUT";
  1807. this.label3_5GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1808. this.label3_5GHz_UL_OUT.TabIndex = 98;
  1809. this.label3_5GHz_UL_OUT.Text = "0.0V";
  1810. //
  1811. // label2_1GHz_UL_OUT
  1812. //
  1813. this.label2_1GHz_UL_OUT.AutoSize = true;
  1814. this.label2_1GHz_UL_OUT.Location = new System.Drawing.Point(148, 169);
  1815. this.label2_1GHz_UL_OUT.Name = "label2_1GHz_UL_OUT";
  1816. this.label2_1GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1817. this.label2_1GHz_UL_OUT.TabIndex = 98;
  1818. this.label2_1GHz_UL_OUT.Text = "0.0V";
  1819. //
  1820. // label1_8GHz_UL_OUT
  1821. //
  1822. this.label1_8GHz_UL_OUT.AutoSize = true;
  1823. this.label1_8GHz_UL_OUT.Location = new System.Drawing.Point(148, 85);
  1824. this.label1_8GHz_UL_OUT.Name = "label1_8GHz_UL_OUT";
  1825. this.label1_8GHz_UL_OUT.Size = new System.Drawing.Size(29, 12);
  1826. this.label1_8GHz_UL_OUT.TabIndex = 98;
  1827. this.label1_8GHz_UL_OUT.Text = "0.0V";
  1828. //
  1829. // label_RFU_Temp
  1830. //
  1831. this.label_RFU_Temp.AutoSize = true;
  1832. this.label_RFU_Temp.Location = new System.Drawing.Point(35, 295);
  1833. this.label_RFU_Temp.Name = "label_RFU_Temp";
  1834. this.label_RFU_Temp.Size = new System.Drawing.Size(29, 12);
  1835. this.label_RFU_Temp.TabIndex = 98;
  1836. this.label_RFU_Temp.Text = "0.0V";
  1837. //
  1838. // label3_5GHz_UL_IN
  1839. //
  1840. this.label3_5GHz_UL_IN.AutoSize = true;
  1841. this.label3_5GHz_UL_IN.Location = new System.Drawing.Point(29, 253);
  1842. this.label3_5GHz_UL_IN.Name = "label3_5GHz_UL_IN";
  1843. this.label3_5GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1844. this.label3_5GHz_UL_IN.TabIndex = 98;
  1845. this.label3_5GHz_UL_IN.Text = "0.0V";
  1846. //
  1847. // label2_1GHz_UL_IN
  1848. //
  1849. this.label2_1GHz_UL_IN.AutoSize = true;
  1850. this.label2_1GHz_UL_IN.Location = new System.Drawing.Point(30, 169);
  1851. this.label2_1GHz_UL_IN.Name = "label2_1GHz_UL_IN";
  1852. this.label2_1GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1853. this.label2_1GHz_UL_IN.TabIndex = 98;
  1854. this.label2_1GHz_UL_IN.Text = "0.0V";
  1855. //
  1856. // label1_8GHz_UL_IN
  1857. //
  1858. this.label1_8GHz_UL_IN.AutoSize = true;
  1859. this.label1_8GHz_UL_IN.Location = new System.Drawing.Point(30, 85);
  1860. this.label1_8GHz_UL_IN.Name = "label1_8GHz_UL_IN";
  1861. this.label1_8GHz_UL_IN.Size = new System.Drawing.Size(29, 12);
  1862. this.label1_8GHz_UL_IN.TabIndex = 98;
  1863. this.label1_8GHz_UL_IN.Text = "0.0V";
  1864. //
  1865. // label3_5GHz_DL_OUT
  1866. //
  1867. this.label3_5GHz_DL_OUT.AutoSize = true;
  1868. this.label3_5GHz_DL_OUT.Location = new System.Drawing.Point(143, 211);
  1869. this.label3_5GHz_DL_OUT.Name = "label3_5GHz_DL_OUT";
  1870. this.label3_5GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1871. this.label3_5GHz_DL_OUT.TabIndex = 98;
  1872. this.label3_5GHz_DL_OUT.Text = "0.0V";
  1873. //
  1874. // label2_1GHz_DL_OUT
  1875. //
  1876. this.label2_1GHz_DL_OUT.AutoSize = true;
  1877. this.label2_1GHz_DL_OUT.Location = new System.Drawing.Point(144, 127);
  1878. this.label2_1GHz_DL_OUT.Name = "label2_1GHz_DL_OUT";
  1879. this.label2_1GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1880. this.label2_1GHz_DL_OUT.TabIndex = 98;
  1881. this.label2_1GHz_DL_OUT.Text = "0.0V";
  1882. //
  1883. // label1_8GHz_DL_OUT
  1884. //
  1885. this.label1_8GHz_DL_OUT.AutoSize = true;
  1886. this.label1_8GHz_DL_OUT.Location = new System.Drawing.Point(144, 43);
  1887. this.label1_8GHz_DL_OUT.Name = "label1_8GHz_DL_OUT";
  1888. this.label1_8GHz_DL_OUT.Size = new System.Drawing.Size(29, 12);
  1889. this.label1_8GHz_DL_OUT.TabIndex = 98;
  1890. this.label1_8GHz_DL_OUT.Text = "0.0V";
  1891. //
  1892. // label3_5GHz_DL_IN
  1893. //
  1894. this.label3_5GHz_DL_IN.AutoSize = true;
  1895. this.label3_5GHz_DL_IN.Location = new System.Drawing.Point(31, 211);
  1896. this.label3_5GHz_DL_IN.Name = "label3_5GHz_DL_IN";
  1897. this.label3_5GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1898. this.label3_5GHz_DL_IN.TabIndex = 98;
  1899. this.label3_5GHz_DL_IN.Text = "0.0V";
  1900. //
  1901. // label2_1GHz_DL_IN
  1902. //
  1903. this.label2_1GHz_DL_IN.AutoSize = true;
  1904. this.label2_1GHz_DL_IN.Location = new System.Drawing.Point(32, 127);
  1905. this.label2_1GHz_DL_IN.Name = "label2_1GHz_DL_IN";
  1906. this.label2_1GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1907. this.label2_1GHz_DL_IN.TabIndex = 98;
  1908. this.label2_1GHz_DL_IN.Text = "0.0V";
  1909. //
  1910. // label1_8GHz_DL_IN
  1911. //
  1912. this.label1_8GHz_DL_IN.AutoSize = true;
  1913. this.label1_8GHz_DL_IN.Location = new System.Drawing.Point(32, 43);
  1914. this.label1_8GHz_DL_IN.Name = "label1_8GHz_DL_IN";
  1915. this.label1_8GHz_DL_IN.Size = new System.Drawing.Size(29, 12);
  1916. this.label1_8GHz_DL_IN.TabIndex = 98;
  1917. this.label1_8GHz_DL_IN.Text = "0.0V";
  1918. //
  1919. // label40
  1920. //
  1921. this.label40.AutoSize = true;
  1922. this.label40.Location = new System.Drawing.Point(122, 274);
  1923. this.label40.Name = "label40";
  1924. this.label40.Size = new System.Drawing.Size(55, 12);
  1925. this.label40.TabIndex = 97;
  1926. this.label40.Text = "28V_DET";
  1927. //
  1928. // label34
  1929. //
  1930. this.label34.AutoSize = true;
  1931. this.label34.Location = new System.Drawing.Point(119, 232);
  1932. this.label34.Name = "label34";
  1933. this.label34.Size = new System.Drawing.Size(93, 12);
  1934. this.label34.TabIndex = 97;
  1935. this.label34.Text = "3.5GHz UL OUT";
  1936. //
  1937. // label11
  1938. //
  1939. this.label11.AutoSize = true;
  1940. this.label11.Location = new System.Drawing.Point(120, 148);
  1941. this.label11.Name = "label11";
  1942. this.label11.Size = new System.Drawing.Size(93, 12);
  1943. this.label11.TabIndex = 97;
  1944. this.label11.Text = "2.1GHz DL OUT";
  1945. //
  1946. // label58
  1947. //
  1948. this.label58.AutoSize = true;
  1949. this.label58.Location = new System.Drawing.Point(120, 64);
  1950. this.label58.Name = "label58";
  1951. this.label58.Size = new System.Drawing.Size(93, 12);
  1952. this.label58.TabIndex = 97;
  1953. this.label58.Text = "1.8GHz UL OUT";
  1954. //
  1955. // label39
  1956. //
  1957. this.label39.AutoSize = true;
  1958. this.label39.Location = new System.Drawing.Point(19, 274);
  1959. this.label39.Name = "label39";
  1960. this.label39.Size = new System.Drawing.Size(67, 12);
  1961. this.label39.TabIndex = 97;
  1962. this.label39.Text = "RFU_Temp";
  1963. //
  1964. // label31
  1965. //
  1966. this.label31.AutoSize = true;
  1967. this.label31.Location = new System.Drawing.Point(10, 232);
  1968. this.label31.Name = "label31";
  1969. this.label31.Size = new System.Drawing.Size(80, 12);
  1970. this.label31.TabIndex = 97;
  1971. this.label31.Text = "3.5GHz UL IN";
  1972. //
  1973. // label9
  1974. //
  1975. this.label9.AutoSize = true;
  1976. this.label9.Location = new System.Drawing.Point(11, 148);
  1977. this.label9.Name = "label9";
  1978. this.label9.Size = new System.Drawing.Size(80, 12);
  1979. this.label9.TabIndex = 97;
  1980. this.label9.Text = "2.1GHz UL IN";
  1981. //
  1982. // label51
  1983. //
  1984. this.label51.AutoSize = true;
  1985. this.label51.Location = new System.Drawing.Point(11, 64);
  1986. this.label51.Name = "label51";
  1987. this.label51.Size = new System.Drawing.Size(80, 12);
  1988. this.label51.TabIndex = 97;
  1989. this.label51.Text = "1.8GHz UL IN";
  1990. //
  1991. // label30
  1992. //
  1993. this.label30.AutoSize = true;
  1994. this.label30.Location = new System.Drawing.Point(119, 190);
  1995. this.label30.Name = "label30";
  1996. this.label30.Size = new System.Drawing.Size(93, 12);
  1997. this.label30.TabIndex = 97;
  1998. this.label30.Text = "3.5GHz DL OUT";
  1999. //
  2000. // label8
  2001. //
  2002. this.label8.AutoSize = true;
  2003. this.label8.Location = new System.Drawing.Point(120, 106);
  2004. this.label8.Name = "label8";
  2005. this.label8.Size = new System.Drawing.Size(93, 12);
  2006. this.label8.TabIndex = 97;
  2007. this.label8.Text = "2.1GHz DL OUT";
  2008. //
  2009. // label57
  2010. //
  2011. this.label57.AutoSize = true;
  2012. this.label57.Location = new System.Drawing.Point(120, 22);
  2013. this.label57.Name = "label57";
  2014. this.label57.Size = new System.Drawing.Size(93, 12);
  2015. this.label57.TabIndex = 97;
  2016. this.label57.Text = "1.8GHz DL OUT";
  2017. //
  2018. // label29
  2019. //
  2020. this.label29.AutoSize = true;
  2021. this.label29.Location = new System.Drawing.Point(6, 190);
  2022. this.label29.Name = "label29";
  2023. this.label29.Size = new System.Drawing.Size(80, 12);
  2024. this.label29.TabIndex = 97;
  2025. this.label29.Text = "3.5GHz DL IN";
  2026. //
  2027. // label1
  2028. //
  2029. this.label1.AutoSize = true;
  2030. this.label1.Location = new System.Drawing.Point(7, 106);
  2031. this.label1.Name = "label1";
  2032. this.label1.Size = new System.Drawing.Size(80, 12);
  2033. this.label1.TabIndex = 97;
  2034. this.label1.Text = "2.1GHz DL IN";
  2035. //
  2036. // label_DET_1_8G_DL_IN
  2037. //
  2038. this.label_DET_1_8G_DL_IN.AutoSize = true;
  2039. this.label_DET_1_8G_DL_IN.Location = new System.Drawing.Point(7, 22);
  2040. this.label_DET_1_8G_DL_IN.Name = "label_DET_1_8G_DL_IN";
  2041. this.label_DET_1_8G_DL_IN.Size = new System.Drawing.Size(80, 12);
  2042. this.label_DET_1_8G_DL_IN.TabIndex = 97;
  2043. this.label_DET_1_8G_DL_IN.Text = "1.8GHz DL IN";
  2044. //
  2045. // button_Set
  2046. //
  2047. this.button_Set.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Bold);
  2048. this.button_Set.Location = new System.Drawing.Point(243, 20);
  2049. this.button_Set.Name = "button_Set";
  2050. this.button_Set.Size = new System.Drawing.Size(116, 50);
  2051. this.button_Set.TabIndex = 109;
  2052. this.button_Set.Text = "SET";
  2053. this.button_Set.UseVisualStyleBackColor = true;
  2054. this.button_Set.Click += new System.EventHandler(this.Button_Set_Click);
  2055. //
  2056. // button1
  2057. //
  2058. this.button1.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2059. this.button1.Location = new System.Drawing.Point(365, 20);
  2060. this.button1.Name = "button1";
  2061. this.button1.Size = new System.Drawing.Size(116, 50);
  2062. this.button1.TabIndex = 110;
  2063. this.button1.Text = "ATTEN ZERO SET";
  2064. this.button1.UseVisualStyleBackColor = true;
  2065. this.button1.Click += new System.EventHandler(this.button1_Click);
  2066. //
  2067. // label35
  2068. //
  2069. this.label35.AutoSize = true;
  2070. this.label35.Location = new System.Drawing.Point(31, 88);
  2071. this.label35.Name = "label35";
  2072. this.label35.Size = new System.Drawing.Size(46, 12);
  2073. this.label35.TabIndex = 100;
  2074. this.label35.Text = "V out E";
  2075. //
  2076. // label27
  2077. //
  2078. this.label27.AutoSize = true;
  2079. this.label27.Location = new System.Drawing.Point(31, 59);
  2080. this.label27.Name = "label27";
  2081. this.label27.Size = new System.Drawing.Size(46, 12);
  2082. this.label27.TabIndex = 99;
  2083. this.label27.Text = "V out A";
  2084. //
  2085. // numericUpDown_DAC_VoltCtrl_A
  2086. //
  2087. this.numericUpDown_DAC_VoltCtrl_A.DecimalPlaces = 2;
  2088. this.numericUpDown_DAC_VoltCtrl_A.Increment = new decimal(new int[] {
  2089. 1,
  2090. 0,
  2091. 0,
  2092. 131072});
  2093. this.numericUpDown_DAC_VoltCtrl_A.Location = new System.Drawing.Point(95, 55);
  2094. this.numericUpDown_DAC_VoltCtrl_A.Maximum = new decimal(new int[] {
  2095. 4,
  2096. 0,
  2097. 0,
  2098. 0});
  2099. this.numericUpDown_DAC_VoltCtrl_A.Name = "numericUpDown_DAC_VoltCtrl_A";
  2100. this.numericUpDown_DAC_VoltCtrl_A.Size = new System.Drawing.Size(71, 21);
  2101. this.numericUpDown_DAC_VoltCtrl_A.TabIndex = 102;
  2102. this.numericUpDown_DAC_VoltCtrl_A.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2103. this.numericUpDown_DAC_VoltCtrl_A.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2104. this.numericUpDown_DAC_VoltCtrl_A.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2105. //
  2106. // numericUpDown_DAC_VoltCtrl_E
  2107. //
  2108. this.numericUpDown_DAC_VoltCtrl_E.DecimalPlaces = 2;
  2109. this.numericUpDown_DAC_VoltCtrl_E.Increment = new decimal(new int[] {
  2110. 1,
  2111. 0,
  2112. 0,
  2113. 131072});
  2114. this.numericUpDown_DAC_VoltCtrl_E.Location = new System.Drawing.Point(95, 84);
  2115. this.numericUpDown_DAC_VoltCtrl_E.Maximum = new decimal(new int[] {
  2116. 4,
  2117. 0,
  2118. 0,
  2119. 0});
  2120. this.numericUpDown_DAC_VoltCtrl_E.Name = "numericUpDown_DAC_VoltCtrl_E";
  2121. this.numericUpDown_DAC_VoltCtrl_E.Size = new System.Drawing.Size(71, 21);
  2122. this.numericUpDown_DAC_VoltCtrl_E.TabIndex = 101;
  2123. this.numericUpDown_DAC_VoltCtrl_E.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2124. this.numericUpDown_DAC_VoltCtrl_E.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2125. this.numericUpDown_DAC_VoltCtrl_E.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2126. //
  2127. // groupBox6
  2128. //
  2129. this.groupBox6.Controls.Add(this.label10);
  2130. this.groupBox6.Controls.Add(this.numericUpDown11);
  2131. this.groupBox6.Controls.Add(this.numericUpDown10);
  2132. this.groupBox6.Controls.Add(this.numericUpDown9);
  2133. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_H);
  2134. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_F);
  2135. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_G);
  2136. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_E);
  2137. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_D);
  2138. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_B);
  2139. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_C);
  2140. this.groupBox6.Controls.Add(this.numericUpDown_DAC_VoltCtrl_A);
  2141. this.groupBox6.Controls.Add(this.label37);
  2142. this.groupBox6.Controls.Add(this.label12);
  2143. this.groupBox6.Controls.Add(this.label25);
  2144. this.groupBox6.Controls.Add(this.label36);
  2145. this.groupBox6.Controls.Add(this.label38);
  2146. this.groupBox6.Controls.Add(this.label23);
  2147. this.groupBox6.Controls.Add(this.label27);
  2148. this.groupBox6.Controls.Add(this.label35);
  2149. this.groupBox6.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2150. this.groupBox6.Location = new System.Drawing.Point(243, 658);
  2151. this.groupBox6.Name = "groupBox6";
  2152. this.groupBox6.Size = new System.Drawing.Size(924, 157);
  2153. this.groupBox6.TabIndex = 102;
  2154. this.groupBox6.TabStop = false;
  2155. this.groupBox6.Text = "V(Voltage)";
  2156. this.groupBox6.Click += new System.EventHandler(this.Cusor_DeFocus);
  2157. //
  2158. // label10
  2159. //
  2160. this.label10.AutoSize = true;
  2161. this.label10.Location = new System.Drawing.Point(278, 88);
  2162. this.label10.Name = "label10";
  2163. this.label10.Size = new System.Drawing.Size(45, 12);
  2164. this.label10.TabIndex = 103;
  2165. this.label10.Text = "V out F";
  2166. //
  2167. // numericUpDown11
  2168. //
  2169. this.numericUpDown11.DecimalPlaces = 1;
  2170. this.numericUpDown11.Increment = new decimal(new int[] {
  2171. 1,
  2172. 0,
  2173. 0,
  2174. 65536});
  2175. this.numericUpDown11.Location = new System.Drawing.Point(1577, 69);
  2176. this.numericUpDown11.Maximum = new decimal(new int[] {
  2177. 3000,
  2178. 0,
  2179. 0,
  2180. 0});
  2181. this.numericUpDown11.Name = "numericUpDown11";
  2182. this.numericUpDown11.Size = new System.Drawing.Size(71, 21);
  2183. this.numericUpDown11.TabIndex = 101;
  2184. //
  2185. // numericUpDown10
  2186. //
  2187. this.numericUpDown10.DecimalPlaces = 1;
  2188. this.numericUpDown10.Increment = new decimal(new int[] {
  2189. 1,
  2190. 0,
  2191. 0,
  2192. 65536});
  2193. this.numericUpDown10.Location = new System.Drawing.Point(1331, 69);
  2194. this.numericUpDown10.Maximum = new decimal(new int[] {
  2195. 3000,
  2196. 0,
  2197. 0,
  2198. 0});
  2199. this.numericUpDown10.Name = "numericUpDown10";
  2200. this.numericUpDown10.Size = new System.Drawing.Size(71, 21);
  2201. this.numericUpDown10.TabIndex = 101;
  2202. //
  2203. // numericUpDown9
  2204. //
  2205. this.numericUpDown9.DecimalPlaces = 1;
  2206. this.numericUpDown9.Increment = new decimal(new int[] {
  2207. 1,
  2208. 0,
  2209. 0,
  2210. 65536});
  2211. this.numericUpDown9.Location = new System.Drawing.Point(1088, 69);
  2212. this.numericUpDown9.Maximum = new decimal(new int[] {
  2213. 3000,
  2214. 0,
  2215. 0,
  2216. 0});
  2217. this.numericUpDown9.Name = "numericUpDown9";
  2218. this.numericUpDown9.Size = new System.Drawing.Size(71, 21);
  2219. this.numericUpDown9.TabIndex = 101;
  2220. //
  2221. // numericUpDown_DAC_VoltCtrl_H
  2222. //
  2223. this.numericUpDown_DAC_VoltCtrl_H.DecimalPlaces = 2;
  2224. this.numericUpDown_DAC_VoltCtrl_H.Increment = new decimal(new int[] {
  2225. 1,
  2226. 0,
  2227. 0,
  2228. 131072});
  2229. this.numericUpDown_DAC_VoltCtrl_H.Location = new System.Drawing.Point(836, 84);
  2230. this.numericUpDown_DAC_VoltCtrl_H.Maximum = new decimal(new int[] {
  2231. 4,
  2232. 0,
  2233. 0,
  2234. 0});
  2235. this.numericUpDown_DAC_VoltCtrl_H.Name = "numericUpDown_DAC_VoltCtrl_H";
  2236. this.numericUpDown_DAC_VoltCtrl_H.Size = new System.Drawing.Size(71, 21);
  2237. this.numericUpDown_DAC_VoltCtrl_H.TabIndex = 101;
  2238. this.numericUpDown_DAC_VoltCtrl_H.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2239. this.numericUpDown_DAC_VoltCtrl_H.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2240. this.numericUpDown_DAC_VoltCtrl_H.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2241. //
  2242. // numericUpDown_DAC_VoltCtrl_F
  2243. //
  2244. this.numericUpDown_DAC_VoltCtrl_F.DecimalPlaces = 2;
  2245. this.numericUpDown_DAC_VoltCtrl_F.Increment = new decimal(new int[] {
  2246. 1,
  2247. 0,
  2248. 0,
  2249. 131072});
  2250. this.numericUpDown_DAC_VoltCtrl_F.Location = new System.Drawing.Point(342, 84);
  2251. this.numericUpDown_DAC_VoltCtrl_F.Maximum = new decimal(new int[] {
  2252. 4,
  2253. 0,
  2254. 0,
  2255. 0});
  2256. this.numericUpDown_DAC_VoltCtrl_F.Name = "numericUpDown_DAC_VoltCtrl_F";
  2257. this.numericUpDown_DAC_VoltCtrl_F.Size = new System.Drawing.Size(71, 21);
  2258. this.numericUpDown_DAC_VoltCtrl_F.TabIndex = 101;
  2259. this.numericUpDown_DAC_VoltCtrl_F.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2260. this.numericUpDown_DAC_VoltCtrl_F.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2261. this.numericUpDown_DAC_VoltCtrl_F.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2262. //
  2263. // numericUpDown_DAC_VoltCtrl_G
  2264. //
  2265. this.numericUpDown_DAC_VoltCtrl_G.DecimalPlaces = 2;
  2266. this.numericUpDown_DAC_VoltCtrl_G.Increment = new decimal(new int[] {
  2267. 1,
  2268. 0,
  2269. 0,
  2270. 131072});
  2271. this.numericUpDown_DAC_VoltCtrl_G.Location = new System.Drawing.Point(589, 84);
  2272. this.numericUpDown_DAC_VoltCtrl_G.Maximum = new decimal(new int[] {
  2273. 4,
  2274. 0,
  2275. 0,
  2276. 0});
  2277. this.numericUpDown_DAC_VoltCtrl_G.Name = "numericUpDown_DAC_VoltCtrl_G";
  2278. this.numericUpDown_DAC_VoltCtrl_G.Size = new System.Drawing.Size(71, 21);
  2279. this.numericUpDown_DAC_VoltCtrl_G.TabIndex = 101;
  2280. this.numericUpDown_DAC_VoltCtrl_G.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2281. this.numericUpDown_DAC_VoltCtrl_G.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2282. this.numericUpDown_DAC_VoltCtrl_G.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2283. //
  2284. // numericUpDown_DAC_VoltCtrl_D
  2285. //
  2286. this.numericUpDown_DAC_VoltCtrl_D.DecimalPlaces = 2;
  2287. this.numericUpDown_DAC_VoltCtrl_D.Increment = new decimal(new int[] {
  2288. 1,
  2289. 0,
  2290. 0,
  2291. 131072});
  2292. this.numericUpDown_DAC_VoltCtrl_D.Location = new System.Drawing.Point(836, 55);
  2293. this.numericUpDown_DAC_VoltCtrl_D.Maximum = new decimal(new int[] {
  2294. 4,
  2295. 0,
  2296. 0,
  2297. 0});
  2298. this.numericUpDown_DAC_VoltCtrl_D.Name = "numericUpDown_DAC_VoltCtrl_D";
  2299. this.numericUpDown_DAC_VoltCtrl_D.Size = new System.Drawing.Size(71, 21);
  2300. this.numericUpDown_DAC_VoltCtrl_D.TabIndex = 102;
  2301. this.numericUpDown_DAC_VoltCtrl_D.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2302. this.numericUpDown_DAC_VoltCtrl_D.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2303. this.numericUpDown_DAC_VoltCtrl_D.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2304. //
  2305. // numericUpDown_DAC_VoltCtrl_B
  2306. //
  2307. this.numericUpDown_DAC_VoltCtrl_B.DecimalPlaces = 2;
  2308. this.numericUpDown_DAC_VoltCtrl_B.Increment = new decimal(new int[] {
  2309. 1,
  2310. 0,
  2311. 0,
  2312. 131072});
  2313. this.numericUpDown_DAC_VoltCtrl_B.Location = new System.Drawing.Point(342, 55);
  2314. this.numericUpDown_DAC_VoltCtrl_B.Maximum = new decimal(new int[] {
  2315. 4,
  2316. 0,
  2317. 0,
  2318. 0});
  2319. this.numericUpDown_DAC_VoltCtrl_B.Name = "numericUpDown_DAC_VoltCtrl_B";
  2320. this.numericUpDown_DAC_VoltCtrl_B.Size = new System.Drawing.Size(71, 21);
  2321. this.numericUpDown_DAC_VoltCtrl_B.TabIndex = 102;
  2322. this.numericUpDown_DAC_VoltCtrl_B.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2323. this.numericUpDown_DAC_VoltCtrl_B.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2324. this.numericUpDown_DAC_VoltCtrl_B.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2325. //
  2326. // numericUpDown_DAC_VoltCtrl_C
  2327. //
  2328. this.numericUpDown_DAC_VoltCtrl_C.DecimalPlaces = 2;
  2329. this.numericUpDown_DAC_VoltCtrl_C.Increment = new decimal(new int[] {
  2330. 1,
  2331. 0,
  2332. 0,
  2333. 131072});
  2334. this.numericUpDown_DAC_VoltCtrl_C.Location = new System.Drawing.Point(589, 55);
  2335. this.numericUpDown_DAC_VoltCtrl_C.Maximum = new decimal(new int[] {
  2336. 4,
  2337. 0,
  2338. 0,
  2339. 0});
  2340. this.numericUpDown_DAC_VoltCtrl_C.Name = "numericUpDown_DAC_VoltCtrl_C";
  2341. this.numericUpDown_DAC_VoltCtrl_C.Size = new System.Drawing.Size(71, 21);
  2342. this.numericUpDown_DAC_VoltCtrl_C.TabIndex = 102;
  2343. this.numericUpDown_DAC_VoltCtrl_C.Enter += new System.EventHandler(this.Activi_Change__Setting);
  2344. this.numericUpDown_DAC_VoltCtrl_C.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  2345. this.numericUpDown_DAC_VoltCtrl_C.Leave += new System.EventHandler(this.Activi_Change__SettingComplete);
  2346. //
  2347. // label37
  2348. //
  2349. this.label37.AutoSize = true;
  2350. this.label37.Location = new System.Drawing.Point(772, 59);
  2351. this.label37.Name = "label37";
  2352. this.label37.Size = new System.Drawing.Size(46, 12);
  2353. this.label37.TabIndex = 99;
  2354. this.label37.Text = "V out D";
  2355. //
  2356. // label12
  2357. //
  2358. this.label12.AutoSize = true;
  2359. this.label12.Location = new System.Drawing.Point(278, 59);
  2360. this.label12.Name = "label12";
  2361. this.label12.Size = new System.Drawing.Size(46, 12);
  2362. this.label12.TabIndex = 99;
  2363. this.label12.Text = "V out B";
  2364. //
  2365. // label25
  2366. //
  2367. this.label25.AutoSize = true;
  2368. this.label25.Location = new System.Drawing.Point(523, 59);
  2369. this.label25.Name = "label25";
  2370. this.label25.Size = new System.Drawing.Size(47, 12);
  2371. this.label25.TabIndex = 99;
  2372. this.label25.Text = "V out C";
  2373. //
  2374. // label36
  2375. //
  2376. this.label36.AutoSize = true;
  2377. this.label36.Location = new System.Drawing.Point(1190, 82);
  2378. this.label36.Name = "label36";
  2379. this.label36.Size = new System.Drawing.Size(46, 12);
  2380. this.label36.TabIndex = 100;
  2381. this.label36.Text = "A out E";
  2382. //
  2383. // label38
  2384. //
  2385. this.label38.AutoSize = true;
  2386. this.label38.Location = new System.Drawing.Point(773, 88);
  2387. this.label38.Name = "label38";
  2388. this.label38.Size = new System.Drawing.Size(46, 12);
  2389. this.label38.TabIndex = 100;
  2390. this.label38.Text = "V out H";
  2391. //
  2392. // label23
  2393. //
  2394. this.label23.AutoSize = true;
  2395. this.label23.Location = new System.Drawing.Point(523, 88);
  2396. this.label23.Name = "label23";
  2397. this.label23.Size = new System.Drawing.Size(47, 12);
  2398. this.label23.TabIndex = 100;
  2399. this.label23.Text = "V out G";
  2400. //
  2401. // button_Save
  2402. //
  2403. this.button_Save.Font = new System.Drawing.Font("굴림", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(20)));
  2404. this.button_Save.Location = new System.Drawing.Point(12, 306);
  2405. this.button_Save.Name = "button_Save";
  2406. this.button_Save.Size = new System.Drawing.Size(225, 87);
  2407. this.button_Save.TabIndex = 111;
  2408. this.button_Save.Text = "SAVE";
  2409. this.button_Save.UseVisualStyleBackColor = true;
  2410. this.button_Save.Click += new System.EventHandler(this.button_Save_Click);
  2411. //
  2412. // Main_Form
  2413. //
  2414. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  2415. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2416. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  2417. this.ClientSize = new System.Drawing.Size(1185, 840);
  2418. this.Controls.Add(this.button_Save);
  2419. this.Controls.Add(this.button1);
  2420. this.Controls.Add(this.button_Set);
  2421. this.Controls.Add(this.groupBox3);
  2422. this.Controls.Add(this.groupBox_TDD);
  2423. this.Controls.Add(this.groupBox12);
  2424. this.Controls.Add(this.groupBox6);
  2425. this.Controls.Add(this.groupBox10);
  2426. this.Controls.Add(this.pictureBox15);
  2427. this.Controls.Add(this.label80);
  2428. this.Controls.Add(this.label79);
  2429. this.Controls.Add(this.groupBox17);
  2430. this.Controls.Add(this.groupBox8);
  2431. this.Controls.Add(this.groupBox9);
  2432. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2433. this.Name = "Main_Form";
  2434. this.Text = "PATH_EN_1.8G_DL";
  2435. this.Load += new System.EventHandler(this.Main_Form_Load);
  2436. this.groupBox9.ResumeLayout(false);
  2437. this.groupBox9.PerformLayout();
  2438. this.groupBox8.ResumeLayout(false);
  2439. this.groupBox7.ResumeLayout(false);
  2440. this.groupBox7.PerformLayout();
  2441. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM3)).EndInit();
  2442. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM2)).EndInit();
  2443. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_COM1)).EndInit();
  2444. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_UL)).EndInit();
  2445. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_3_5G_DL)).EndInit();
  2446. this.groupBox5.ResumeLayout(false);
  2447. this.groupBox5.PerformLayout();
  2448. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL4)).EndInit();
  2449. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL2)).EndInit();
  2450. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL3)).EndInit();
  2451. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_UL1)).EndInit();
  2452. this.groupBox2.ResumeLayout(false);
  2453. this.groupBox2.PerformLayout();
  2454. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL4)).EndInit();
  2455. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL2)).EndInit();
  2456. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL3)).EndInit();
  2457. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_UL1)).EndInit();
  2458. this.groupBox4.ResumeLayout(false);
  2459. this.groupBox4.PerformLayout();
  2460. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL2)).EndInit();
  2461. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_2_1G_DL1)).EndInit();
  2462. this.groupBox1.ResumeLayout(false);
  2463. this.groupBox1.PerformLayout();
  2464. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL2)).EndInit();
  2465. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_1_8G_DL1)).EndInit();
  2466. this.groupBox17.ResumeLayout(false);
  2467. this.groupBox17.PerformLayout();
  2468. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_ON)).EndInit();
  2469. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_L_OFF)).EndInit();
  2470. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_ON)).EndInit();
  2471. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_H_OFF)).EndInit();
  2472. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_ON)).EndInit();
  2473. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_L_OFF)).EndInit();
  2474. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_ON)).EndInit();
  2475. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PLL_ON_OFF_3_5G_H_OFF)).EndInit();
  2476. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_ON)).EndInit();
  2477. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_UL_OFF)).EndInit();
  2478. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_ON)).EndInit();
  2479. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_3_5G_DL_OFF)).EndInit();
  2480. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_ON)).EndInit();
  2481. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_UL_OFF)).EndInit();
  2482. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_ON)).EndInit();
  2483. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_2_1G_DL_OFF)).EndInit();
  2484. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_ON)).EndInit();
  2485. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_UL_OFF)).EndInit();
  2486. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_ON)).EndInit();
  2487. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_PATH_1_8G_DL_OFF)).EndInit();
  2488. this.groupBox10.ResumeLayout(false);
  2489. this.groupBox11.ResumeLayout(false);
  2490. this.groupBox11.PerformLayout();
  2491. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_UL)).EndInit();
  2492. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_3_5G_DL)).EndInit();
  2493. this.groupBox15.ResumeLayout(false);
  2494. this.groupBox15.PerformLayout();
  2495. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_UL)).EndInit();
  2496. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_2_1G_DL)).EndInit();
  2497. this.groupBox16.ResumeLayout(false);
  2498. this.groupBox16.PerformLayout();
  2499. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_UL)).EndInit();
  2500. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_PLL_1_8G_DL)).EndInit();
  2501. this.groupBox12.ResumeLayout(false);
  2502. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
  2503. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
  2504. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
  2505. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
  2506. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  2507. this.groupBox_TDD.ResumeLayout(false);
  2508. this.groupBox_TDD.PerformLayout();
  2509. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_OFF)).EndInit();
  2510. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_DL_ON)).EndInit();
  2511. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_ON)).EndInit();
  2512. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TDD_T_SYNC_UL_OFF)).EndInit();
  2513. this.groupBox3.ResumeLayout(false);
  2514. this.groupBox3.PerformLayout();
  2515. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_A)).EndInit();
  2516. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_E)).EndInit();
  2517. this.groupBox6.ResumeLayout(false);
  2518. this.groupBox6.PerformLayout();
  2519. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown11)).EndInit();
  2520. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown10)).EndInit();
  2521. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown9)).EndInit();
  2522. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_H)).EndInit();
  2523. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_F)).EndInit();
  2524. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_G)).EndInit();
  2525. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_D)).EndInit();
  2526. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_B)).EndInit();
  2527. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DAC_VoltCtrl_C)).EndInit();
  2528. this.ResumeLayout(false);
  2529. this.PerformLayout();
  2530. }
  2531. #endregion
  2532. private System.Windows.Forms.GroupBox groupBox9;
  2533. private System.Windows.Forms.Button button3;
  2534. private System.Windows.Forms.Button button_terminal;
  2535. private System.Windows.Forms.CheckBox setcheck_checkBox;
  2536. private System.Windows.Forms.Label cmCom_Port;
  2537. private System.Windows.Forms.Button button_PortOpen;
  2538. private System.Windows.Forms.Label cmBaudRate;
  2539. private System.Windows.Forms.ComboBox comboBox_baudrate;
  2540. public System.Windows.Forms.ComboBox comboBox_Port;
  2541. private System.Windows.Forms.GroupBox groupBox8;
  2542. private System.Windows.Forms.GroupBox groupBox7;
  2543. private System.Windows.Forms.Label label26;
  2544. private System.Windows.Forms.Label label28;
  2545. private System.Windows.Forms.GroupBox groupBox5;
  2546. private System.Windows.Forms.Label label15;
  2547. private System.Windows.Forms.Label label16;
  2548. private System.Windows.Forms.Label label17;
  2549. private System.Windows.Forms.Label label18;
  2550. private System.Windows.Forms.GroupBox groupBox2;
  2551. private System.Windows.Forms.Label label7;
  2552. private System.Windows.Forms.Label label6;
  2553. private System.Windows.Forms.Label label4;
  2554. private System.Windows.Forms.Label label5;
  2555. private System.Windows.Forms.GroupBox groupBox4;
  2556. private System.Windows.Forms.Label label13;
  2557. private System.Windows.Forms.Label label14;
  2558. private System.Windows.Forms.GroupBox groupBox1;
  2559. private System.Windows.Forms.Label label3;
  2560. private System.Windows.Forms.Label label2;
  2561. private System.Windows.Forms.GroupBox groupBox17;
  2562. private System.Windows.Forms.Label label78;
  2563. private System.Windows.Forms.Label label77;
  2564. private System.Windows.Forms.Label label76;
  2565. private System.Windows.Forms.Label label75;
  2566. private System.Windows.Forms.Label label72;
  2567. private System.Windows.Forms.Label label71;
  2568. private System.Windows.Forms.Label label70;
  2569. private System.Windows.Forms.Label label69;
  2570. private System.Windows.Forms.Label label79;
  2571. private System.Windows.Forms.PictureBox pictureBox15;
  2572. private System.Windows.Forms.Label label80;
  2573. private System.Windows.Forms.GroupBox groupBox10;
  2574. private System.Windows.Forms.GroupBox groupBox11;
  2575. private System.Windows.Forms.Label label32;
  2576. private System.Windows.Forms.Label label33;
  2577. private System.Windows.Forms.GroupBox groupBox15;
  2578. private System.Windows.Forms.Label label47;
  2579. private System.Windows.Forms.Label label48;
  2580. private System.Windows.Forms.GroupBox groupBox16;
  2581. private System.Windows.Forms.Label label49;
  2582. private System.Windows.Forms.Label label50;
  2583. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL1;
  2584. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_UL;
  2585. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_DL;
  2586. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL4;
  2587. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL2;
  2588. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL3;
  2589. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_UL1;
  2590. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL4;
  2591. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL2;
  2592. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL3;
  2593. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_UL1;
  2594. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL2;
  2595. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_2_1G_DL1;
  2596. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_1_8G_DL2;
  2597. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_UL;
  2598. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_3_5G_DL;
  2599. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_UL;
  2600. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_2_1G_DL;
  2601. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_UL;
  2602. public System.Windows.Forms.NumericUpDown numericUpDown_PLL_1_8G_DL;
  2603. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_OFF;
  2604. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_OFF;
  2605. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_OFF;
  2606. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_OFF;
  2607. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_OFF;
  2608. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_OFF;
  2609. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_OFF;
  2610. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_OFF;
  2611. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_L_ON;
  2612. public System.Windows.Forms.PictureBox pictureBox_PLL_ON_OFF_3_5G_H_ON;
  2613. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_UL_ON;
  2614. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_DL_ON;
  2615. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_UL_ON;
  2616. public System.Windows.Forms.PictureBox pictureBox_PATH_2_1G_DL_ON;
  2617. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_UL_ON;
  2618. private System.Windows.Forms.GroupBox groupBox12;
  2619. public System.Windows.Forms.PictureBox pictureBox_G_TX;
  2620. public System.Windows.Forms.PictureBox pictureBox_R_RX;
  2621. public System.Windows.Forms.PictureBox pictureBox_R_TX;
  2622. public System.Windows.Forms.PictureBox pictureBox_G_RX;
  2623. private System.Windows.Forms.Label label74;
  2624. private System.Windows.Forms.Label label73;
  2625. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_ON;
  2626. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_L_OFF;
  2627. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_ON;
  2628. public System.Windows.Forms.PictureBox pictureBox_PATH_3_5G_H_OFF;
  2629. public System.Windows.Forms.PictureBox pictureBox_PATH_1_8G_DL_ON;
  2630. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM3;
  2631. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM2;
  2632. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_3_5G_COM1;
  2633. private System.Windows.Forms.Label label19;
  2634. private System.Windows.Forms.Label label20;
  2635. private System.Windows.Forms.Label label21;
  2636. private System.Windows.Forms.GroupBox groupBox_TDD;
  2637. private System.Windows.Forms.Label label24;
  2638. private System.Windows.Forms.Label label22;
  2639. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_OFF;
  2640. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_DL_ON;
  2641. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_ON;
  2642. private System.Windows.Forms.PictureBox pictureBox_TDD_T_SYNC_UL_OFF;
  2643. private System.Windows.Forms.GroupBox groupBox3;
  2644. private System.Windows.Forms.Label label34;
  2645. private System.Windows.Forms.Label label11;
  2646. private System.Windows.Forms.Label label31;
  2647. private System.Windows.Forms.Label label9;
  2648. private System.Windows.Forms.Label label30;
  2649. private System.Windows.Forms.Label label8;
  2650. private System.Windows.Forms.Label label29;
  2651. private System.Windows.Forms.Label label1;
  2652. private System.Windows.Forms.Button button_Set;
  2653. private System.Windows.Forms.Label label58;
  2654. private System.Windows.Forms.Label label51;
  2655. private System.Windows.Forms.Label label57;
  2656. private System.Windows.Forms.Label label_DET_1_8G_DL_IN;
  2657. private System.Windows.Forms.Label label40;
  2658. private System.Windows.Forms.Label label39;
  2659. public System.Windows.Forms.Label label3_5GHz_UL_OUT;
  2660. public System.Windows.Forms.Label label2_1GHz_UL_OUT;
  2661. public System.Windows.Forms.Label label3_5GHz_UL_IN;
  2662. public System.Windows.Forms.Label label2_1GHz_UL_IN;
  2663. public System.Windows.Forms.Label label3_5GHz_DL_OUT;
  2664. public System.Windows.Forms.Label label2_1GHz_DL_OUT;
  2665. public System.Windows.Forms.Label label3_5GHz_DL_IN;
  2666. public System.Windows.Forms.Label label2_1GHz_DL_IN;
  2667. public System.Windows.Forms.Label label1_8GHz_UL_OUT;
  2668. public System.Windows.Forms.Label label1_8GHz_UL_IN;
  2669. public System.Windows.Forms.Label label1_8GHz_DL_OUT;
  2670. public System.Windows.Forms.Label label1_8GHz_DL_IN;
  2671. public System.Windows.Forms.Label label_28V_Det;
  2672. public System.Windows.Forms.Label label_RFU_Temp;
  2673. private System.Windows.Forms.Button button1;
  2674. private System.Windows.Forms.Label label35;
  2675. private System.Windows.Forms.Label label27;
  2676. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_A;
  2677. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_E;
  2678. private System.Windows.Forms.GroupBox groupBox6;
  2679. private System.Windows.Forms.Label label10;
  2680. public System.Windows.Forms.NumericUpDown numericUpDown11;
  2681. public System.Windows.Forms.NumericUpDown numericUpDown10;
  2682. public System.Windows.Forms.NumericUpDown numericUpDown9;
  2683. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_H;
  2684. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_F;
  2685. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_G;
  2686. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_D;
  2687. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_B;
  2688. public System.Windows.Forms.NumericUpDown numericUpDown_DAC_VoltCtrl_C;
  2689. private System.Windows.Forms.Label label37;
  2690. private System.Windows.Forms.Label label12;
  2691. private System.Windows.Forms.Label label25;
  2692. private System.Windows.Forms.Label label36;
  2693. private System.Windows.Forms.Label label38;
  2694. private System.Windows.Forms.Label label23;
  2695. private System.Windows.Forms.Button button_Save;
  2696. public System.Windows.Forms.Timer timer;
  2697. }
  2698. }