Main_Form.Designer.cs 81 KB

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