Main_Form.Designer.cs 145 KB

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