Main_Form.Designer.cs 150 KB

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