Main.Designer.cs 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944
  1. namespace APL_TestCheck
  2. {
  3. partial class Main
  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));
  30. this.serialPort = new System.IO.Ports.SerialPort(this.components);
  31. this.panel_Main = new System.Windows.Forms.Panel();
  32. this.button_Path = new System.Windows.Forms.Button();
  33. this.button_Clear = new System.Windows.Forms.Button();
  34. this.checkBox_Edit = new System.Windows.Forms.CheckBox();
  35. this.checkBox_TerminalStop = new System.Windows.Forms.CheckBox();
  36. this.panel4 = new System.Windows.Forms.Panel();
  37. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  38. this.label6 = new System.Windows.Forms.Label();
  39. this.panel1 = new System.Windows.Forms.Panel();
  40. this.panel2 = new System.Windows.Forms.Panel();
  41. this.label_Merge = new System.Windows.Forms.Label();
  42. this.groupBox9 = new System.Windows.Forms.GroupBox();
  43. this.panel_Port = new System.Windows.Forms.Panel();
  44. this.label_Port = new System.Windows.Forms.Label();
  45. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  46. this.comboBox_bps = new System.Windows.Forms.ComboBox();
  47. this.cmCom_Port = new System.Windows.Forms.Label();
  48. this.cmBaudRate = new System.Windows.Forms.Label();
  49. this.label1 = new System.Windows.Forms.Label();
  50. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  51. this.panel_SensorMode = new System.Windows.Forms.Panel();
  52. this.label_SensorTest = new System.Windows.Forms.Label();
  53. this.panel_Catm1Mode = new System.Windows.Forms.Panel();
  54. this.label_Catm1Test = new System.Windows.Forms.Label();
  55. this.panel_GpsMode = new System.Windows.Forms.Panel();
  56. this.label_GPSTest = new System.Windows.Forms.Label();
  57. this.panel_GpsTest = new System.Windows.Forms.Panel();
  58. this.button_GpsTestSave = new System.Windows.Forms.Button();
  59. this.richTextBox_Gps = new System.Windows.Forms.RichTextBox();
  60. this.checkBox_GPGSV = new System.Windows.Forms.CheckBox();
  61. this.dataGridView_Gps = new System.Windows.Forms.DataGridView();
  62. this.Gps_SerialNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.panel_SensorTest = new System.Windows.Forms.Panel();
  65. this.pictureBox_Check2 = new System.Windows.Forms.PictureBox();
  66. this.pictureBox_Check3 = new System.Windows.Forms.PictureBox();
  67. this.pictureBox_Check4 = new System.Windows.Forms.PictureBox();
  68. this.pictureBox_Check1 = new System.Windows.Forms.PictureBox();
  69. this.label5 = new System.Windows.Forms.Label();
  70. this.pictureBox_UnCheck2 = new System.Windows.Forms.PictureBox();
  71. this.label4 = new System.Windows.Forms.Label();
  72. this.pictureBox_UnCheck3 = new System.Windows.Forms.PictureBox();
  73. this.label3 = new System.Windows.Forms.Label();
  74. this.richTextBox_Sensor = new System.Windows.Forms.RichTextBox();
  75. this.pictureBox_UnCheck4 = new System.Windows.Forms.PictureBox();
  76. this.pictureBox_UnCheck1 = new System.Windows.Forms.PictureBox();
  77. this.label2 = new System.Windows.Forms.Label();
  78. this.dataGridView_Sensor = new System.Windows.Forms.DataGridView();
  79. this.panel_Catm1Test = new System.Windows.Forms.Panel();
  80. this.richTextBox_catm1 = new System.Windows.Forms.RichTextBox();
  81. this.dataGridView_Catm1 = new System.Windows.Forms.DataGridView();
  82. this.Catm1_SerialNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.Modem_Ver = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.RSRP = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.folderBrowserDialog_Mainpath = new System.Windows.Forms.FolderBrowserDialog();
  86. this.ProductNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.IMEI = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.USIM = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.Version = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.BatteryVoltage = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.SystemVoltage = new System.Windows.Forms.DataGridViewTextBoxColumn();
  92. this.Temp = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.BMA = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.label7 = new System.Windows.Forms.Label();
  95. this.panel3 = new System.Windows.Forms.Panel();
  96. this.panel_Main.SuspendLayout();
  97. this.panel4.SuspendLayout();
  98. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  99. this.panel1.SuspendLayout();
  100. this.panel2.SuspendLayout();
  101. this.groupBox9.SuspendLayout();
  102. this.panel_Port.SuspendLayout();
  103. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  104. this.panel_SensorMode.SuspendLayout();
  105. this.panel_Catm1Mode.SuspendLayout();
  106. this.panel_GpsMode.SuspendLayout();
  107. this.panel_GpsTest.SuspendLayout();
  108. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Gps)).BeginInit();
  109. this.panel_SensorTest.SuspendLayout();
  110. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check2)).BeginInit();
  111. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check3)).BeginInit();
  112. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check4)).BeginInit();
  113. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check1)).BeginInit();
  114. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck2)).BeginInit();
  115. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck3)).BeginInit();
  116. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck4)).BeginInit();
  117. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck1)).BeginInit();
  118. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Sensor)).BeginInit();
  119. this.panel_Catm1Test.SuspendLayout();
  120. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Catm1)).BeginInit();
  121. this.panel3.SuspendLayout();
  122. this.SuspendLayout();
  123. //
  124. // serialPort
  125. //
  126. this.serialPort.BaudRate = 115200;
  127. //
  128. // panel_Main
  129. //
  130. this.panel_Main.BackColor = System.Drawing.Color.SkyBlue;
  131. this.panel_Main.Controls.Add(this.button_Path);
  132. this.panel_Main.Controls.Add(this.button_Clear);
  133. this.panel_Main.Controls.Add(this.checkBox_Edit);
  134. this.panel_Main.Controls.Add(this.checkBox_TerminalStop);
  135. this.panel_Main.Controls.Add(this.panel4);
  136. this.panel_Main.Controls.Add(this.label6);
  137. this.panel_Main.Controls.Add(this.panel1);
  138. this.panel_Main.Controls.Add(this.panel_GpsTest);
  139. this.panel_Main.Controls.Add(this.panel_SensorTest);
  140. this.panel_Main.Controls.Add(this.panel_Catm1Test);
  141. this.panel_Main.Location = new System.Drawing.Point(0, 0);
  142. this.panel_Main.Name = "panel_Main";
  143. this.panel_Main.Size = new System.Drawing.Size(930, 710);
  144. this.panel_Main.TabIndex = 1;
  145. this.panel_Main.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseDown);
  146. this.panel_Main.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseMove);
  147. this.panel_Main.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseUp);
  148. //
  149. // button_Path
  150. //
  151. this.button_Path.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  152. this.button_Path.Location = new System.Drawing.Point(4, 4);
  153. this.button_Path.Name = "button_Path";
  154. this.button_Path.Size = new System.Drawing.Size(156, 34);
  155. this.button_Path.TabIndex = 90;
  156. this.button_Path.Text = "FilePathSet";
  157. this.button_Path.UseVisualStyleBackColor = false;
  158. this.button_Path.Click += new System.EventHandler(this.button_Path_Click);
  159. //
  160. // button_Clear
  161. //
  162. this.button_Clear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  163. this.button_Clear.Location = new System.Drawing.Point(248, 12);
  164. this.button_Clear.Name = "button_Clear";
  165. this.button_Clear.Size = new System.Drawing.Size(108, 24);
  166. this.button_Clear.TabIndex = 89;
  167. this.button_Clear.Text = "Terminal Clear";
  168. this.button_Clear.UseVisualStyleBackColor = false;
  169. this.button_Clear.Click += new System.EventHandler(this.button_Clear_Click);
  170. //
  171. // checkBox_Edit
  172. //
  173. this.checkBox_Edit.AutoSize = true;
  174. this.checkBox_Edit.Location = new System.Drawing.Point(170, 22);
  175. this.checkBox_Edit.Name = "checkBox_Edit";
  176. this.checkBox_Edit.Size = new System.Drawing.Size(72, 16);
  177. this.checkBox_Edit.TabIndex = 88;
  178. this.checkBox_Edit.Text = "편집모드";
  179. this.checkBox_Edit.UseVisualStyleBackColor = true;
  180. //
  181. // checkBox_TerminalStop
  182. //
  183. this.checkBox_TerminalStop.AutoSize = true;
  184. this.checkBox_TerminalStop.Location = new System.Drawing.Point(805, 22);
  185. this.checkBox_TerminalStop.Name = "checkBox_TerminalStop";
  186. this.checkBox_TerminalStop.Size = new System.Drawing.Size(103, 16);
  187. this.checkBox_TerminalStop.TabIndex = 88;
  188. this.checkBox_TerminalStop.Text = "Terminal Stop";
  189. this.checkBox_TerminalStop.UseVisualStyleBackColor = true;
  190. //
  191. // panel4
  192. //
  193. this.panel4.BackColor = System.Drawing.Color.White;
  194. this.panel4.Controls.Add(this.pictureBox5);
  195. this.panel4.Location = new System.Drawing.Point(-10, 642);
  196. this.panel4.Name = "panel4";
  197. this.panel4.Size = new System.Drawing.Size(940, 68);
  198. this.panel4.TabIndex = 85;
  199. //
  200. // pictureBox5
  201. //
  202. this.pictureBox5.Image = global::APL_TestCheck.Properties.Resources.bluecell_logo;
  203. this.pictureBox5.Location = new System.Drawing.Point(765, 7);
  204. this.pictureBox5.Name = "pictureBox5";
  205. this.pictureBox5.Size = new System.Drawing.Size(159, 50);
  206. this.pictureBox5.TabIndex = 26;
  207. this.pictureBox5.TabStop = false;
  208. //
  209. // label6
  210. //
  211. this.label6.AutoSize = true;
  212. this.label6.BackColor = System.Drawing.Color.Transparent;
  213. this.label6.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  214. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(242)))), ((int)(((byte)(247)))));
  215. this.label6.Location = new System.Drawing.Point(48, 339);
  216. this.label6.Name = "label6";
  217. this.label6.Size = new System.Drawing.Size(0, 20);
  218. this.label6.TabIndex = 84;
  219. //
  220. // panel1
  221. //
  222. this.panel1.Controls.Add(this.panel3);
  223. this.panel1.Controls.Add(this.panel2);
  224. this.panel1.Controls.Add(this.groupBox9);
  225. this.panel1.Controls.Add(this.label1);
  226. this.panel1.Controls.Add(this.pictureBox6);
  227. this.panel1.Controls.Add(this.panel_SensorMode);
  228. this.panel1.Controls.Add(this.panel_Catm1Mode);
  229. this.panel1.Controls.Add(this.panel_GpsMode);
  230. this.panel1.Location = new System.Drawing.Point(4, 44);
  231. this.panel1.Name = "panel1";
  232. this.panel1.Size = new System.Drawing.Size(159, 599);
  233. this.panel1.TabIndex = 26;
  234. //
  235. // panel2
  236. //
  237. this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  238. this.panel2.Controls.Add(this.label_Merge);
  239. this.panel2.Location = new System.Drawing.Point(0, 230);
  240. this.panel2.Name = "panel2";
  241. this.panel2.Size = new System.Drawing.Size(156, 53);
  242. this.panel2.TabIndex = 32;
  243. //
  244. // label_Merge
  245. //
  246. this.label_Merge.AutoSize = true;
  247. this.label_Merge.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  248. this.label_Merge.ForeColor = System.Drawing.Color.Snow;
  249. this.label_Merge.Location = new System.Drawing.Point(0, 17);
  250. this.label_Merge.Name = "label_Merge";
  251. this.label_Merge.Size = new System.Drawing.Size(160, 19);
  252. this.label_Merge.TabIndex = 31;
  253. this.label_Merge.Text = "Merge 서비스 준비중...";
  254. this.label_Merge.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  255. //
  256. // groupBox9
  257. //
  258. this.groupBox9.Controls.Add(this.panel_Port);
  259. this.groupBox9.Controls.Add(this.comboBox_Port);
  260. this.groupBox9.Controls.Add(this.comboBox_bps);
  261. this.groupBox9.Controls.Add(this.cmCom_Port);
  262. this.groupBox9.Controls.Add(this.cmBaudRate);
  263. this.groupBox9.Location = new System.Drawing.Point(3, 351);
  264. this.groupBox9.Name = "groupBox9";
  265. this.groupBox9.Size = new System.Drawing.Size(153, 242);
  266. this.groupBox9.TabIndex = 85;
  267. this.groupBox9.TabStop = false;
  268. this.groupBox9.Text = "Connection";
  269. //
  270. // panel_Port
  271. //
  272. this.panel_Port.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  273. this.panel_Port.Controls.Add(this.label_Port);
  274. this.panel_Port.Location = new System.Drawing.Point(9, 188);
  275. this.panel_Port.Name = "panel_Port";
  276. this.panel_Port.Size = new System.Drawing.Size(138, 41);
  277. this.panel_Port.TabIndex = 93;
  278. this.panel_Port.Click += new System.EventHandler(this.label_Port_Click);
  279. this.panel_Port.MouseClick += new System.Windows.Forms.MouseEventHandler(this.label_Port_MouseClick);
  280. this.panel_Port.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  281. this.panel_Port.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  282. //
  283. // label_Port
  284. //
  285. this.label_Port.AutoSize = true;
  286. this.label_Port.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  287. this.label_Port.ForeColor = System.Drawing.Color.Snow;
  288. this.label_Port.Location = new System.Drawing.Point(31, 10);
  289. this.label_Port.Name = "label_Port";
  290. this.label_Port.Size = new System.Drawing.Size(80, 19);
  291. this.label_Port.TabIndex = 31;
  292. this.label_Port.Text = "Port Open";
  293. this.label_Port.Click += new System.EventHandler(this.label_Port_Click);
  294. this.label_Port.MouseLeave += new System.EventHandler(this.label_Port_MouseLeave);
  295. this.label_Port.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_Port_MouseMove);
  296. //
  297. // comboBox_Port
  298. //
  299. this.comboBox_Port.BackColor = System.Drawing.Color.YellowGreen;
  300. this.comboBox_Port.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
  301. this.comboBox_Port.ForeColor = System.Drawing.Color.Yellow;
  302. this.comboBox_Port.FormattingEnabled = true;
  303. this.comboBox_Port.Location = new System.Drawing.Point(7, 54);
  304. this.comboBox_Port.Name = "comboBox_Port";
  305. this.comboBox_Port.Size = new System.Drawing.Size(140, 27);
  306. this.comboBox_Port.TabIndex = 92;
  307. //
  308. // comboBox_bps
  309. //
  310. this.comboBox_bps.BackColor = System.Drawing.Color.YellowGreen;
  311. this.comboBox_bps.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
  312. this.comboBox_bps.ForeColor = System.Drawing.Color.Yellow;
  313. this.comboBox_bps.FormattingEnabled = true;
  314. this.comboBox_bps.Items.AddRange(new object[] {
  315. "9600",
  316. "115200"});
  317. this.comboBox_bps.Location = new System.Drawing.Point(7, 138);
  318. this.comboBox_bps.Name = "comboBox_bps";
  319. this.comboBox_bps.Size = new System.Drawing.Size(140, 27);
  320. this.comboBox_bps.TabIndex = 91;
  321. this.comboBox_bps.Text = "115200";
  322. //
  323. // cmCom_Port
  324. //
  325. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  326. | System.Windows.Forms.AnchorStyles.Left)
  327. | System.Windows.Forms.AnchorStyles.Right)));
  328. this.cmCom_Port.AutoSize = true;
  329. this.cmCom_Port.Location = new System.Drawing.Point(6, 27);
  330. this.cmCom_Port.Name = "cmCom_Port";
  331. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  332. this.cmCom_Port.TabIndex = 89;
  333. this.cmCom_Port.Text = "Com Port";
  334. //
  335. // cmBaudRate
  336. //
  337. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  338. | System.Windows.Forms.AnchorStyles.Left)
  339. | System.Windows.Forms.AnchorStyles.Right)));
  340. this.cmBaudRate.AutoSize = true;
  341. this.cmBaudRate.Location = new System.Drawing.Point(5, 118);
  342. this.cmBaudRate.Name = "cmBaudRate";
  343. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  344. this.cmBaudRate.TabIndex = 90;
  345. this.cmBaudRate.Text = "Baud Rate(bps)";
  346. //
  347. // label1
  348. //
  349. this.label1.AutoSize = true;
  350. this.label1.Font = new System.Drawing.Font("맑은 고딕", 13F);
  351. this.label1.ForeColor = System.Drawing.Color.Snow;
  352. this.label1.Location = new System.Drawing.Point(39, 14);
  353. this.label1.Name = "label1";
  354. this.label1.Size = new System.Drawing.Size(101, 25);
  355. this.label1.TabIndex = 30;
  356. this.label1.Text = "Test Mode";
  357. //
  358. // pictureBox6
  359. //
  360. this.pictureBox6.Image = global::APL_TestCheck.Properties.Resources.search_32px;
  361. this.pictureBox6.Location = new System.Drawing.Point(8, 12);
  362. this.pictureBox6.Name = "pictureBox6";
  363. this.pictureBox6.Size = new System.Drawing.Size(32, 32);
  364. this.pictureBox6.TabIndex = 29;
  365. this.pictureBox6.TabStop = false;
  366. //
  367. // panel_SensorMode
  368. //
  369. this.panel_SensorMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  370. this.panel_SensorMode.Controls.Add(this.label_SensorTest);
  371. this.panel_SensorMode.Location = new System.Drawing.Point(0, 170);
  372. this.panel_SensorMode.Name = "panel_SensorMode";
  373. this.panel_SensorMode.Size = new System.Drawing.Size(156, 53);
  374. this.panel_SensorMode.TabIndex = 2;
  375. this.panel_SensorMode.Click += new System.EventHandler(this.label_SensorTest_Click);
  376. this.panel_SensorMode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  377. this.panel_SensorMode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  378. //
  379. // label_SensorTest
  380. //
  381. this.label_SensorTest.AutoSize = true;
  382. this.label_SensorTest.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  383. this.label_SensorTest.ForeColor = System.Drawing.Color.Snow;
  384. this.label_SensorTest.Location = new System.Drawing.Point(34, 17);
  385. this.label_SensorTest.Name = "label_SensorTest";
  386. this.label_SensorTest.Size = new System.Drawing.Size(87, 19);
  387. this.label_SensorTest.TabIndex = 31;
  388. this.label_SensorTest.Text = "Sensor Test";
  389. this.label_SensorTest.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  390. this.label_SensorTest.Click += new System.EventHandler(this.label_SensorTest_Click);
  391. this.label_SensorTest.MouseLeave += new System.EventHandler(this.label_SensorTest_MouseLeave);
  392. this.label_SensorTest.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_SensorTest_MouseMove);
  393. //
  394. // panel_Catm1Mode
  395. //
  396. this.panel_Catm1Mode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  397. this.panel_Catm1Mode.Controls.Add(this.label_Catm1Test);
  398. this.panel_Catm1Mode.Location = new System.Drawing.Point(0, 110);
  399. this.panel_Catm1Mode.Name = "panel_Catm1Mode";
  400. this.panel_Catm1Mode.Size = new System.Drawing.Size(156, 53);
  401. this.panel_Catm1Mode.TabIndex = 1;
  402. this.panel_Catm1Mode.Click += new System.EventHandler(this.label_Catm1Test_Click);
  403. this.panel_Catm1Mode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  404. this.panel_Catm1Mode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  405. //
  406. // label_Catm1Test
  407. //
  408. this.label_Catm1Test.AutoSize = true;
  409. this.label_Catm1Test.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  410. this.label_Catm1Test.ForeColor = System.Drawing.Color.Snow;
  411. this.label_Catm1Test.Location = new System.Drawing.Point(28, 17);
  412. this.label_Catm1Test.Name = "label_Catm1Test";
  413. this.label_Catm1Test.Size = new System.Drawing.Size(95, 19);
  414. this.label_Catm1Test.TabIndex = 31;
  415. this.label_Catm1Test.Text = "CAT M1 Test";
  416. this.label_Catm1Test.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  417. this.label_Catm1Test.Click += new System.EventHandler(this.label_Catm1Test_Click);
  418. this.label_Catm1Test.MouseLeave += new System.EventHandler(this.label_Catm1Test_MouseLeave);
  419. this.label_Catm1Test.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_Catm1Test_MouseMove);
  420. //
  421. // panel_GpsMode
  422. //
  423. this.panel_GpsMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  424. this.panel_GpsMode.Controls.Add(this.label_GPSTest);
  425. this.panel_GpsMode.Location = new System.Drawing.Point(0, 50);
  426. this.panel_GpsMode.Name = "panel_GpsMode";
  427. this.panel_GpsMode.Size = new System.Drawing.Size(156, 53);
  428. this.panel_GpsMode.TabIndex = 0;
  429. this.panel_GpsMode.Click += new System.EventHandler(this.label_GPSTest_Click);
  430. this.panel_GpsMode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  431. this.panel_GpsMode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  432. //
  433. // label_GPSTest
  434. //
  435. this.label_GPSTest.AutoSize = true;
  436. this.label_GPSTest.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  437. this.label_GPSTest.ForeColor = System.Drawing.Color.Snow;
  438. this.label_GPSTest.Location = new System.Drawing.Point(39, 17);
  439. this.label_GPSTest.Margin = new System.Windows.Forms.Padding(0);
  440. this.label_GPSTest.Name = "label_GPSTest";
  441. this.label_GPSTest.Size = new System.Drawing.Size(73, 19);
  442. this.label_GPSTest.TabIndex = 31;
  443. this.label_GPSTest.Text = "GPS TEST";
  444. this.label_GPSTest.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  445. this.label_GPSTest.Click += new System.EventHandler(this.label_GPSTest_Click);
  446. this.label_GPSTest.MouseLeave += new System.EventHandler(this.label_GPSTest_MouseLeave);
  447. this.label_GPSTest.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_GPSTest_MouseMove);
  448. //
  449. // panel_GpsTest
  450. //
  451. this.panel_GpsTest.Controls.Add(this.button_GpsTestSave);
  452. this.panel_GpsTest.Controls.Add(this.richTextBox_Gps);
  453. this.panel_GpsTest.Controls.Add(this.checkBox_GPGSV);
  454. this.panel_GpsTest.Controls.Add(this.dataGridView_Gps);
  455. this.panel_GpsTest.Location = new System.Drawing.Point(149, 44);
  456. this.panel_GpsTest.Name = "panel_GpsTest";
  457. this.panel_GpsTest.Size = new System.Drawing.Size(777, 599);
  458. this.panel_GpsTest.TabIndex = 86;
  459. //
  460. // button_GpsTestSave
  461. //
  462. this.button_GpsTestSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  463. this.button_GpsTestSave.Font = new System.Drawing.Font("굴림", 16F, System.Drawing.FontStyle.Bold);
  464. this.button_GpsTestSave.Location = new System.Drawing.Point(497, 3);
  465. this.button_GpsTestSave.Name = "button_GpsTestSave";
  466. this.button_GpsTestSave.Size = new System.Drawing.Size(272, 58);
  467. this.button_GpsTestSave.TabIndex = 89;
  468. this.button_GpsTestSave.Text = "SAVE";
  469. this.button_GpsTestSave.UseVisualStyleBackColor = false;
  470. this.button_GpsTestSave.Click += new System.EventHandler(this.button_GpsTestSave_Click);
  471. //
  472. // richTextBox_Gps
  473. //
  474. this.richTextBox_Gps.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  475. this.richTextBox_Gps.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  476. this.richTextBox_Gps.ForeColor = System.Drawing.Color.Yellow;
  477. this.richTextBox_Gps.Location = new System.Drawing.Point(26, 67);
  478. this.richTextBox_Gps.Name = "richTextBox_Gps";
  479. this.richTextBox_Gps.Size = new System.Drawing.Size(743, 500);
  480. this.richTextBox_Gps.TabIndex = 26;
  481. this.richTextBox_Gps.Text = "";
  482. //
  483. // checkBox_GPGSV
  484. //
  485. this.checkBox_GPGSV.AutoSize = true;
  486. this.checkBox_GPGSV.Location = new System.Drawing.Point(26, 573);
  487. this.checkBox_GPGSV.Name = "checkBox_GPGSV";
  488. this.checkBox_GPGSV.Size = new System.Drawing.Size(106, 16);
  489. this.checkBox_GPGSV.TabIndex = 88;
  490. this.checkBox_GPGSV.Text = "GPGSV Mode";
  491. this.checkBox_GPGSV.UseVisualStyleBackColor = true;
  492. //
  493. // dataGridView_Gps
  494. //
  495. this.dataGridView_Gps.AllowUserToAddRows = false;
  496. this.dataGridView_Gps.BackgroundColor = System.Drawing.Color.Gray;
  497. this.dataGridView_Gps.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  498. this.dataGridView_Gps.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  499. this.Gps_SerialNumber,
  500. this.dataGridViewTextBoxColumn8});
  501. this.dataGridView_Gps.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(230)))));
  502. this.dataGridView_Gps.Location = new System.Drawing.Point(26, 3);
  503. this.dataGridView_Gps.Name = "dataGridView_Gps";
  504. this.dataGridView_Gps.RowTemplate.Height = 23;
  505. this.dataGridView_Gps.Size = new System.Drawing.Size(465, 56);
  506. this.dataGridView_Gps.TabIndex = 15;
  507. this.dataGridView_Gps.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_Gps_CellMouseClick);
  508. this.dataGridView_Gps.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_Gps_KeyDown);
  509. //
  510. // Gps_SerialNumber
  511. //
  512. this.Gps_SerialNumber.HeaderText = "생산번호";
  513. this.Gps_SerialNumber.Name = "Gps_SerialNumber";
  514. //
  515. // dataGridViewTextBoxColumn8
  516. //
  517. this.dataGridViewTextBoxColumn8.HeaderText = "GPS SNR";
  518. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  519. //
  520. // panel_SensorTest
  521. //
  522. this.panel_SensorTest.Controls.Add(this.pictureBox_Check2);
  523. this.panel_SensorTest.Controls.Add(this.pictureBox_Check3);
  524. this.panel_SensorTest.Controls.Add(this.pictureBox_Check4);
  525. this.panel_SensorTest.Controls.Add(this.pictureBox_Check1);
  526. this.panel_SensorTest.Controls.Add(this.label5);
  527. this.panel_SensorTest.Controls.Add(this.pictureBox_UnCheck2);
  528. this.panel_SensorTest.Controls.Add(this.label4);
  529. this.panel_SensorTest.Controls.Add(this.pictureBox_UnCheck3);
  530. this.panel_SensorTest.Controls.Add(this.label3);
  531. this.panel_SensorTest.Controls.Add(this.richTextBox_Sensor);
  532. this.panel_SensorTest.Controls.Add(this.pictureBox_UnCheck4);
  533. this.panel_SensorTest.Controls.Add(this.pictureBox_UnCheck1);
  534. this.panel_SensorTest.Controls.Add(this.label2);
  535. this.panel_SensorTest.Controls.Add(this.dataGridView_Sensor);
  536. this.panel_SensorTest.Location = new System.Drawing.Point(149, 44);
  537. this.panel_SensorTest.Name = "panel_SensorTest";
  538. this.panel_SensorTest.Size = new System.Drawing.Size(777, 599);
  539. this.panel_SensorTest.TabIndex = 27;
  540. //
  541. // pictureBox_Check2
  542. //
  543. this.pictureBox_Check2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Check2.Image")));
  544. this.pictureBox_Check2.Location = new System.Drawing.Point(71, 206);
  545. this.pictureBox_Check2.Name = "pictureBox_Check2";
  546. this.pictureBox_Check2.Size = new System.Drawing.Size(50, 50);
  547. this.pictureBox_Check2.TabIndex = 30;
  548. this.pictureBox_Check2.TabStop = false;
  549. //
  550. // pictureBox_Check3
  551. //
  552. this.pictureBox_Check3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Check3.Image")));
  553. this.pictureBox_Check3.Location = new System.Drawing.Point(68, 347);
  554. this.pictureBox_Check3.Name = "pictureBox_Check3";
  555. this.pictureBox_Check3.Size = new System.Drawing.Size(50, 50);
  556. this.pictureBox_Check3.TabIndex = 29;
  557. this.pictureBox_Check3.TabStop = false;
  558. //
  559. // pictureBox_Check4
  560. //
  561. this.pictureBox_Check4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Check4.Image")));
  562. this.pictureBox_Check4.Location = new System.Drawing.Point(68, 490);
  563. this.pictureBox_Check4.Name = "pictureBox_Check4";
  564. this.pictureBox_Check4.Size = new System.Drawing.Size(50, 50);
  565. this.pictureBox_Check4.TabIndex = 28;
  566. this.pictureBox_Check4.TabStop = false;
  567. //
  568. // pictureBox_Check1
  569. //
  570. this.pictureBox_Check1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox_Check1.Image")));
  571. this.pictureBox_Check1.Location = new System.Drawing.Point(71, 67);
  572. this.pictureBox_Check1.Name = "pictureBox_Check1";
  573. this.pictureBox_Check1.Size = new System.Drawing.Size(50, 50);
  574. this.pictureBox_Check1.TabIndex = 27;
  575. this.pictureBox_Check1.TabStop = false;
  576. //
  577. // label5
  578. //
  579. this.label5.AutoSize = true;
  580. this.label5.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold);
  581. this.label5.ForeColor = System.Drawing.Color.Yellow;
  582. this.label5.Location = new System.Drawing.Point(24, 217);
  583. this.label5.Name = "label5";
  584. this.label5.Size = new System.Drawing.Size(47, 25);
  585. this.label5.TabIndex = 24;
  586. this.label5.Text = "2nd";
  587. //
  588. // pictureBox_UnCheck2
  589. //
  590. this.pictureBox_UnCheck2.Image = global::APL_TestCheck.Properties.Resources.checked_50px;
  591. this.pictureBox_UnCheck2.Location = new System.Drawing.Point(71, 206);
  592. this.pictureBox_UnCheck2.Name = "pictureBox_UnCheck2";
  593. this.pictureBox_UnCheck2.Size = new System.Drawing.Size(50, 50);
  594. this.pictureBox_UnCheck2.TabIndex = 23;
  595. this.pictureBox_UnCheck2.TabStop = false;
  596. //
  597. // label4
  598. //
  599. this.label4.AutoSize = true;
  600. this.label4.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold);
  601. this.label4.ForeColor = System.Drawing.Color.Yellow;
  602. this.label4.Location = new System.Drawing.Point(21, 359);
  603. this.label4.Name = "label4";
  604. this.label4.Size = new System.Drawing.Size(42, 25);
  605. this.label4.TabIndex = 22;
  606. this.label4.Text = "3rd";
  607. //
  608. // pictureBox_UnCheck3
  609. //
  610. this.pictureBox_UnCheck3.Image = global::APL_TestCheck.Properties.Resources.checked_50px;
  611. this.pictureBox_UnCheck3.Location = new System.Drawing.Point(68, 347);
  612. this.pictureBox_UnCheck3.Name = "pictureBox_UnCheck3";
  613. this.pictureBox_UnCheck3.Size = new System.Drawing.Size(50, 50);
  614. this.pictureBox_UnCheck3.TabIndex = 21;
  615. this.pictureBox_UnCheck3.TabStop = false;
  616. //
  617. // label3
  618. //
  619. this.label3.AutoSize = true;
  620. this.label3.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold);
  621. this.label3.ForeColor = System.Drawing.Color.Yellow;
  622. this.label3.Location = new System.Drawing.Point(21, 501);
  623. this.label3.Name = "label3";
  624. this.label3.Size = new System.Drawing.Size(42, 25);
  625. this.label3.TabIndex = 20;
  626. this.label3.Text = "4th";
  627. //
  628. // richTextBox_Sensor
  629. //
  630. this.richTextBox_Sensor.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  631. this.richTextBox_Sensor.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  632. this.richTextBox_Sensor.ForeColor = System.Drawing.Color.Yellow;
  633. this.richTextBox_Sensor.Location = new System.Drawing.Point(132, 67);
  634. this.richTextBox_Sensor.Name = "richTextBox_Sensor";
  635. this.richTextBox_Sensor.Size = new System.Drawing.Size(633, 500);
  636. this.richTextBox_Sensor.TabIndex = 26;
  637. this.richTextBox_Sensor.Text = "";
  638. //
  639. // pictureBox_UnCheck4
  640. //
  641. this.pictureBox_UnCheck4.Image = global::APL_TestCheck.Properties.Resources.checked_50px;
  642. this.pictureBox_UnCheck4.Location = new System.Drawing.Point(68, 490);
  643. this.pictureBox_UnCheck4.Name = "pictureBox_UnCheck4";
  644. this.pictureBox_UnCheck4.Size = new System.Drawing.Size(50, 50);
  645. this.pictureBox_UnCheck4.TabIndex = 19;
  646. this.pictureBox_UnCheck4.TabStop = false;
  647. //
  648. // pictureBox_UnCheck1
  649. //
  650. this.pictureBox_UnCheck1.Image = global::APL_TestCheck.Properties.Resources.checked_50px;
  651. this.pictureBox_UnCheck1.Location = new System.Drawing.Point(71, 67);
  652. this.pictureBox_UnCheck1.Name = "pictureBox_UnCheck1";
  653. this.pictureBox_UnCheck1.Size = new System.Drawing.Size(50, 50);
  654. this.pictureBox_UnCheck1.TabIndex = 16;
  655. this.pictureBox_UnCheck1.TabStop = false;
  656. //
  657. // label2
  658. //
  659. this.label2.AutoSize = true;
  660. this.label2.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold);
  661. this.label2.ForeColor = System.Drawing.Color.Yellow;
  662. this.label2.Location = new System.Drawing.Point(24, 78);
  663. this.label2.Name = "label2";
  664. this.label2.Size = new System.Drawing.Size(39, 25);
  665. this.label2.TabIndex = 18;
  666. this.label2.Text = "1st";
  667. //
  668. // dataGridView_Sensor
  669. //
  670. this.dataGridView_Sensor.AllowUserToAddRows = false;
  671. this.dataGridView_Sensor.BackgroundColor = System.Drawing.Color.Gray;
  672. this.dataGridView_Sensor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  673. this.dataGridView_Sensor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  674. this.ProductNumber,
  675. this.IMEI,
  676. this.USIM,
  677. this.Version,
  678. this.BatteryVoltage,
  679. this.SystemVoltage,
  680. this.Temp,
  681. this.BMA});
  682. this.dataGridView_Sensor.GridColor = System.Drawing.Color.Green;
  683. this.dataGridView_Sensor.Location = new System.Drawing.Point(20, 3);
  684. this.dataGridView_Sensor.Name = "dataGridView_Sensor";
  685. this.dataGridView_Sensor.RowTemplate.Height = 23;
  686. this.dataGridView_Sensor.Size = new System.Drawing.Size(745, 58);
  687. this.dataGridView_Sensor.TabIndex = 15;
  688. this.dataGridView_Sensor.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_Sensor_CellMouseClick);
  689. //
  690. // panel_Catm1Test
  691. //
  692. this.panel_Catm1Test.Controls.Add(this.richTextBox_catm1);
  693. this.panel_Catm1Test.Controls.Add(this.dataGridView_Catm1);
  694. this.panel_Catm1Test.Location = new System.Drawing.Point(149, 44);
  695. this.panel_Catm1Test.Name = "panel_Catm1Test";
  696. this.panel_Catm1Test.Size = new System.Drawing.Size(777, 599);
  697. this.panel_Catm1Test.TabIndex = 87;
  698. //
  699. // richTextBox_catm1
  700. //
  701. this.richTextBox_catm1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  702. this.richTextBox_catm1.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  703. this.richTextBox_catm1.ForeColor = System.Drawing.Color.Yellow;
  704. this.richTextBox_catm1.Location = new System.Drawing.Point(17, 65);
  705. this.richTextBox_catm1.Name = "richTextBox_catm1";
  706. this.richTextBox_catm1.Size = new System.Drawing.Size(748, 502);
  707. this.richTextBox_catm1.TabIndex = 26;
  708. this.richTextBox_catm1.Text = "";
  709. //
  710. // dataGridView_Catm1
  711. //
  712. this.dataGridView_Catm1.AllowUserToAddRows = false;
  713. this.dataGridView_Catm1.BackgroundColor = System.Drawing.Color.Gray;
  714. this.dataGridView_Catm1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  715. this.dataGridView_Catm1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  716. this.Catm1_SerialNumber,
  717. this.Modem_Ver,
  718. this.RSRP});
  719. this.dataGridView_Catm1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(230)))));
  720. this.dataGridView_Catm1.Location = new System.Drawing.Point(17, 3);
  721. this.dataGridView_Catm1.Name = "dataGridView_Catm1";
  722. this.dataGridView_Catm1.RowTemplate.Height = 23;
  723. this.dataGridView_Catm1.Size = new System.Drawing.Size(748, 56);
  724. this.dataGridView_Catm1.TabIndex = 15;
  725. this.dataGridView_Catm1.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_Catm1_CellMouseClick);
  726. //
  727. // Catm1_SerialNumber
  728. //
  729. this.Catm1_SerialNumber.HeaderText = "생산번호";
  730. this.Catm1_SerialNumber.Name = "Catm1_SerialNumber";
  731. //
  732. // Modem_Ver
  733. //
  734. this.Modem_Ver.HeaderText = "Modem Ver";
  735. this.Modem_Ver.Name = "Modem_Ver";
  736. //
  737. // RSRP
  738. //
  739. this.RSRP.HeaderText = "RSRP";
  740. this.RSRP.Name = "RSRP";
  741. //
  742. // ProductNumber
  743. //
  744. this.ProductNumber.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  745. this.ProductNumber.HeaderText = "생산번호";
  746. this.ProductNumber.Name = "ProductNumber";
  747. this.ProductNumber.Width = 78;
  748. //
  749. // IMEI
  750. //
  751. this.IMEI.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  752. this.IMEI.HeaderText = "IMEI";
  753. this.IMEI.Name = "IMEI";
  754. this.IMEI.Width = 55;
  755. //
  756. // USIM
  757. //
  758. this.USIM.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  759. this.USIM.HeaderText = "USIM";
  760. this.USIM.Name = "USIM";
  761. this.USIM.Width = 60;
  762. //
  763. // Version
  764. //
  765. this.Version.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  766. this.Version.HeaderText = "버전";
  767. this.Version.Name = "Version";
  768. this.Version.Width = 54;
  769. //
  770. // BatteryVoltage
  771. //
  772. this.BatteryVoltage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  773. this.BatteryVoltage.HeaderText = "BatteryVoltage";
  774. this.BatteryVoltage.Name = "BatteryVoltage";
  775. this.BatteryVoltage.Width = 111;
  776. //
  777. // SystemVoltage
  778. //
  779. this.SystemVoltage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  780. this.SystemVoltage.HeaderText = "SystemVoltage";
  781. this.SystemVoltage.Name = "SystemVoltage";
  782. this.SystemVoltage.Width = 115;
  783. //
  784. // Temp
  785. //
  786. this.Temp.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  787. this.Temp.HeaderText = "온도";
  788. this.Temp.Name = "Temp";
  789. this.Temp.Width = 54;
  790. //
  791. // BMA
  792. //
  793. this.BMA.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  794. this.BMA.HeaderText = "가속도";
  795. this.BMA.Name = "BMA";
  796. this.BMA.Width = 66;
  797. //
  798. // label7
  799. //
  800. this.label7.AutoSize = true;
  801. this.label7.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  802. this.label7.ForeColor = System.Drawing.Color.Snow;
  803. this.label7.Location = new System.Drawing.Point(40, 17);
  804. this.label7.Name = "label7";
  805. this.label7.Size = new System.Drawing.Size(85, 19);
  806. this.label7.TabIndex = 31;
  807. this.label7.Text = "S/N CHECK";
  808. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  809. //
  810. // panel3
  811. //
  812. this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  813. this.panel3.Controls.Add(this.label7);
  814. this.panel3.Location = new System.Drawing.Point(1, 290);
  815. this.panel3.Name = "panel3";
  816. this.panel3.Size = new System.Drawing.Size(156, 53);
  817. this.panel3.TabIndex = 86;
  818. //
  819. // Main
  820. //
  821. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  822. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  823. this.ClientSize = new System.Drawing.Size(925, 706);
  824. this.Controls.Add(this.panel_Main);
  825. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  826. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  827. this.Name = "Main";
  828. this.Text = "APL Test Check";
  829. this.Load += new System.EventHandler(this.Main_Load);
  830. this.panel_Main.ResumeLayout(false);
  831. this.panel_Main.PerformLayout();
  832. this.panel4.ResumeLayout(false);
  833. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  834. this.panel1.ResumeLayout(false);
  835. this.panel1.PerformLayout();
  836. this.panel2.ResumeLayout(false);
  837. this.panel2.PerformLayout();
  838. this.groupBox9.ResumeLayout(false);
  839. this.groupBox9.PerformLayout();
  840. this.panel_Port.ResumeLayout(false);
  841. this.panel_Port.PerformLayout();
  842. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  843. this.panel_SensorMode.ResumeLayout(false);
  844. this.panel_SensorMode.PerformLayout();
  845. this.panel_Catm1Mode.ResumeLayout(false);
  846. this.panel_Catm1Mode.PerformLayout();
  847. this.panel_GpsMode.ResumeLayout(false);
  848. this.panel_GpsMode.PerformLayout();
  849. this.panel_GpsTest.ResumeLayout(false);
  850. this.panel_GpsTest.PerformLayout();
  851. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Gps)).EndInit();
  852. this.panel_SensorTest.ResumeLayout(false);
  853. this.panel_SensorTest.PerformLayout();
  854. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check2)).EndInit();
  855. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check3)).EndInit();
  856. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check4)).EndInit();
  857. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Check1)).EndInit();
  858. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck2)).EndInit();
  859. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck3)).EndInit();
  860. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck4)).EndInit();
  861. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UnCheck1)).EndInit();
  862. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Sensor)).EndInit();
  863. this.panel_Catm1Test.ResumeLayout(false);
  864. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Catm1)).EndInit();
  865. this.panel3.ResumeLayout(false);
  866. this.panel3.PerformLayout();
  867. this.ResumeLayout(false);
  868. }
  869. #endregion
  870. private System.IO.Ports.SerialPort serialPort;
  871. private System.Windows.Forms.Panel panel_Main;
  872. private System.Windows.Forms.Panel panel_SensorTest;
  873. private System.Windows.Forms.Label label5;
  874. private System.Windows.Forms.PictureBox pictureBox_UnCheck2;
  875. private System.Windows.Forms.Label label4;
  876. private System.Windows.Forms.PictureBox pictureBox_UnCheck3;
  877. private System.Windows.Forms.Label label3;
  878. private System.Windows.Forms.RichTextBox richTextBox_Sensor;
  879. private System.Windows.Forms.PictureBox pictureBox_UnCheck4;
  880. private System.Windows.Forms.PictureBox pictureBox_UnCheck1;
  881. private System.Windows.Forms.Label label2;
  882. private System.Windows.Forms.DataGridView dataGridView_Sensor;
  883. private System.Windows.Forms.Panel panel1;
  884. private System.Windows.Forms.PictureBox pictureBox6;
  885. private System.Windows.Forms.Panel panel_SensorMode;
  886. private System.Windows.Forms.Panel panel_Catm1Mode;
  887. private System.Windows.Forms.Panel panel_GpsMode;
  888. private System.Windows.Forms.Label label1;
  889. private System.Windows.Forms.Label label_SensorTest;
  890. private System.Windows.Forms.Label label_Catm1Test;
  891. private System.Windows.Forms.Label label_GPSTest;
  892. private System.Windows.Forms.Label label6;
  893. private System.Windows.Forms.GroupBox groupBox9;
  894. private System.Windows.Forms.ComboBox comboBox_Port;
  895. private System.Windows.Forms.ComboBox comboBox_bps;
  896. private System.Windows.Forms.Label cmCom_Port;
  897. private System.Windows.Forms.Label cmBaudRate;
  898. private System.Windows.Forms.Panel panel_Port;
  899. private System.Windows.Forms.Label label_Port;
  900. private System.Windows.Forms.Panel panel4;
  901. private System.Windows.Forms.PictureBox pictureBox5;
  902. private System.Windows.Forms.Panel panel_Catm1Test;
  903. private System.Windows.Forms.RichTextBox richTextBox_catm1;
  904. private System.Windows.Forms.DataGridView dataGridView_Catm1;
  905. private System.Windows.Forms.Panel panel_GpsTest;
  906. private System.Windows.Forms.RichTextBox richTextBox_Gps;
  907. private System.Windows.Forms.DataGridView dataGridView_Gps;
  908. private System.Windows.Forms.CheckBox checkBox_TerminalStop;
  909. private System.Windows.Forms.CheckBox checkBox_Edit;
  910. private System.Windows.Forms.PictureBox pictureBox_Check2;
  911. private System.Windows.Forms.PictureBox pictureBox_Check3;
  912. private System.Windows.Forms.PictureBox pictureBox_Check4;
  913. private System.Windows.Forms.PictureBox pictureBox_Check1;
  914. private System.Windows.Forms.DataGridViewTextBoxColumn Gps_SerialNumber;
  915. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  916. private System.Windows.Forms.DataGridViewTextBoxColumn Catm1_SerialNumber;
  917. private System.Windows.Forms.DataGridViewTextBoxColumn Modem_Ver;
  918. private System.Windows.Forms.DataGridViewTextBoxColumn RSRP;
  919. private System.Windows.Forms.Button button_Clear;
  920. private System.Windows.Forms.CheckBox checkBox_GPGSV;
  921. private System.Windows.Forms.Button button_GpsTestSave;
  922. private System.Windows.Forms.Button button_Path;
  923. private System.Windows.Forms.Panel panel2;
  924. private System.Windows.Forms.Label label_Merge;
  925. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog_Mainpath;
  926. private System.Windows.Forms.DataGridViewTextBoxColumn ProductNumber;
  927. private System.Windows.Forms.DataGridViewTextBoxColumn IMEI;
  928. private System.Windows.Forms.DataGridViewTextBoxColumn USIM;
  929. private System.Windows.Forms.DataGridViewTextBoxColumn Version;
  930. private System.Windows.Forms.DataGridViewTextBoxColumn BatteryVoltage;
  931. private System.Windows.Forms.DataGridViewTextBoxColumn SystemVoltage;
  932. private System.Windows.Forms.DataGridViewTextBoxColumn Temp;
  933. private System.Windows.Forms.DataGridViewTextBoxColumn BMA;
  934. private System.Windows.Forms.Panel panel3;
  935. private System.Windows.Forms.Label label7;
  936. }
  937. }