BasicMeasureDialog.Designer.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. 
  2. namespace SmartCoalApplication.MeasureProcedure
  3. {
  4. partial class BasicMeasureDialog
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.buttonCancel = new System.Windows.Forms.Button();
  31. this.buttonDetermine = new System.Windows.Forms.Button();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.panel5 = new System.Windows.Forms.Panel();
  34. this.radioButton10 = new System.Windows.Forms.RadioButton();
  35. this.radioButton11 = new System.Windows.Forms.RadioButton();
  36. this.radioButton12 = new System.Windows.Forms.RadioButton();
  37. this.label6 = new System.Windows.Forms.Label();
  38. this.panel4 = new System.Windows.Forms.Panel();
  39. this.radioButton3 = new System.Windows.Forms.RadioButton();
  40. this.radioButton1 = new System.Windows.Forms.RadioButton();
  41. this.radioButton2 = new System.Windows.Forms.RadioButton();
  42. this.panel3 = new System.Windows.Forms.Panel();
  43. this.radioButton4 = new System.Windows.Forms.RadioButton();
  44. this.radioButton5 = new System.Windows.Forms.RadioButton();
  45. this.panel2 = new System.Windows.Forms.Panel();
  46. this.radioButton8 = new System.Windows.Forms.RadioButton();
  47. this.radioButton9 = new System.Windows.Forms.RadioButton();
  48. this.panel1 = new System.Windows.Forms.Panel();
  49. this.radioButton7 = new System.Windows.Forms.RadioButton();
  50. this.radioButton6 = new System.Windows.Forms.RadioButton();
  51. this.label5 = new System.Windows.Forms.Label();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.label3 = new System.Windows.Forms.Label();
  54. this.label2 = new System.Windows.Forms.Label();
  55. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  56. this.label1 = new System.Windows.Forms.Label();
  57. this.labelLanguege = new System.Windows.Forms.Label();
  58. this.panel6 = new System.Windows.Forms.Panel();
  59. this.radioSimpleChnse = new System.Windows.Forms.RadioButton();
  60. this.radioTraditionalChnse = new System.Windows.Forms.RadioButton();
  61. this.groupBox1.SuspendLayout();
  62. this.groupBox2.SuspendLayout();
  63. this.panel5.SuspendLayout();
  64. this.panel4.SuspendLayout();
  65. this.panel3.SuspendLayout();
  66. this.panel2.SuspendLayout();
  67. this.panel1.SuspendLayout();
  68. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  69. this.panel6.SuspendLayout();
  70. this.SuspendLayout();
  71. //
  72. // groupBox1
  73. //
  74. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  75. | System.Windows.Forms.AnchorStyles.Right)));
  76. this.groupBox1.Controls.Add(this.buttonCancel);
  77. this.groupBox1.Controls.Add(this.buttonDetermine);
  78. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  79. this.groupBox1.Name = "groupBox1";
  80. this.groupBox1.Size = new System.Drawing.Size(776, 60);
  81. this.groupBox1.TabIndex = 1;
  82. this.groupBox1.TabStop = false;
  83. this.groupBox1.Text = "操作";
  84. //
  85. // buttonCancel
  86. //
  87. this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  88. | System.Windows.Forms.AnchorStyles.Right)));
  89. this.buttonCancel.Location = new System.Drawing.Point(695, 19);
  90. this.buttonCancel.Name = "buttonCancel";
  91. this.buttonCancel.Size = new System.Drawing.Size(75, 23);
  92. this.buttonCancel.TabIndex = 6;
  93. this.buttonCancel.Text = "取消";
  94. this.buttonCancel.UseVisualStyleBackColor = true;
  95. this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
  96. //
  97. // buttonDetermine
  98. //
  99. this.buttonDetermine.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  100. | System.Windows.Forms.AnchorStyles.Right)));
  101. this.buttonDetermine.Location = new System.Drawing.Point(614, 19);
  102. this.buttonDetermine.Name = "buttonDetermine";
  103. this.buttonDetermine.Size = new System.Drawing.Size(75, 23);
  104. this.buttonDetermine.TabIndex = 5;
  105. this.buttonDetermine.Text = "確定";
  106. this.buttonDetermine.UseVisualStyleBackColor = true;
  107. this.buttonDetermine.Click += new System.EventHandler(this.buttonDetermine_Click);
  108. //
  109. // groupBox2
  110. //
  111. this.groupBox2.Controls.Add(this.panel6);
  112. this.groupBox2.Controls.Add(this.labelLanguege);
  113. this.groupBox2.Controls.Add(this.panel5);
  114. this.groupBox2.Controls.Add(this.label6);
  115. this.groupBox2.Controls.Add(this.panel4);
  116. this.groupBox2.Controls.Add(this.panel3);
  117. this.groupBox2.Controls.Add(this.panel2);
  118. this.groupBox2.Controls.Add(this.panel1);
  119. this.groupBox2.Controls.Add(this.label5);
  120. this.groupBox2.Controls.Add(this.label4);
  121. this.groupBox2.Controls.Add(this.label3);
  122. this.groupBox2.Controls.Add(this.label2);
  123. this.groupBox2.Controls.Add(this.numericUpDown1);
  124. this.groupBox2.Controls.Add(this.label1);
  125. this.groupBox2.Location = new System.Drawing.Point(12, 78);
  126. this.groupBox2.Name = "groupBox2";
  127. this.groupBox2.Size = new System.Drawing.Size(770, 336);
  128. this.groupBox2.TabIndex = 2;
  129. this.groupBox2.TabStop = false;
  130. this.groupBox2.Text = "設置";
  131. //
  132. // panel5
  133. //
  134. this.panel5.Controls.Add(this.radioButton10);
  135. this.panel5.Controls.Add(this.radioButton11);
  136. this.panel5.Controls.Add(this.radioButton12);
  137. this.panel5.Location = new System.Drawing.Point(306, 201);
  138. this.panel5.Name = "panel5";
  139. this.panel5.Size = new System.Drawing.Size(237, 40);
  140. this.panel5.TabIndex = 23;
  141. //
  142. // radioButton10
  143. //
  144. this.radioButton10.AutoSize = true;
  145. this.radioButton10.Checked = true;
  146. this.radioButton10.Location = new System.Drawing.Point(165, 9);
  147. this.radioButton10.Name = "radioButton10";
  148. this.radioButton10.Size = new System.Drawing.Size(47, 16);
  149. this.radioButton10.TabIndex = 20;
  150. this.radioButton10.TabStop = true;
  151. this.radioButton10.Text = "交互";
  152. this.radioButton10.UseVisualStyleBackColor = true;
  153. //
  154. // radioButton11
  155. //
  156. this.radioButton11.AutoSize = true;
  157. this.radioButton11.Location = new System.Drawing.Point(4, 9);
  158. this.radioButton11.Name = "radioButton11";
  159. this.radioButton11.Size = new System.Drawing.Size(35, 16);
  160. this.radioButton11.TabIndex = 18;
  161. this.radioButton11.TabStop = true;
  162. this.radioButton11.Text = "是";
  163. this.radioButton11.UseVisualStyleBackColor = true;
  164. //
  165. // radioButton12
  166. //
  167. this.radioButton12.AutoSize = true;
  168. this.radioButton12.Location = new System.Drawing.Point(89, 9);
  169. this.radioButton12.Name = "radioButton12";
  170. this.radioButton12.Size = new System.Drawing.Size(35, 16);
  171. this.radioButton12.TabIndex = 19;
  172. this.radioButton12.TabStop = true;
  173. this.radioButton12.Text = "否";
  174. this.radioButton12.UseVisualStyleBackColor = true;
  175. //
  176. // label6
  177. //
  178. this.label6.AutoSize = true;
  179. this.label6.Location = new System.Drawing.Point(160, 214);
  180. this.label6.Name = "label6";
  181. this.label6.Size = new System.Drawing.Size(107, 12);
  182. this.label6.TabIndex = 22;
  183. this.label6.Text = "是否啟用SPC上傳:";
  184. //
  185. // panel4
  186. //
  187. this.panel4.Controls.Add(this.radioButton3);
  188. this.panel4.Controls.Add(this.radioButton1);
  189. this.panel4.Controls.Add(this.radioButton2);
  190. this.panel4.Location = new System.Drawing.Point(306, 156);
  191. this.panel4.Name = "panel4";
  192. this.panel4.Size = new System.Drawing.Size(237, 40);
  193. this.panel4.TabIndex = 21;
  194. //
  195. // radioButton3
  196. //
  197. this.radioButton3.AutoSize = true;
  198. this.radioButton3.Checked = true;
  199. this.radioButton3.Location = new System.Drawing.Point(165, 9);
  200. this.radioButton3.Name = "radioButton3";
  201. this.radioButton3.Size = new System.Drawing.Size(47, 16);
  202. this.radioButton3.TabIndex = 20;
  203. this.radioButton3.TabStop = true;
  204. this.radioButton3.Text = "交互";
  205. this.radioButton3.UseVisualStyleBackColor = true;
  206. //
  207. // radioButton1
  208. //
  209. this.radioButton1.AutoSize = true;
  210. this.radioButton1.Location = new System.Drawing.Point(4, 9);
  211. this.radioButton1.Name = "radioButton1";
  212. this.radioButton1.Size = new System.Drawing.Size(35, 16);
  213. this.radioButton1.TabIndex = 18;
  214. this.radioButton1.TabStop = true;
  215. this.radioButton1.Text = "是";
  216. this.radioButton1.UseVisualStyleBackColor = true;
  217. //
  218. // radioButton2
  219. //
  220. this.radioButton2.AutoSize = true;
  221. this.radioButton2.Location = new System.Drawing.Point(89, 9);
  222. this.radioButton2.Name = "radioButton2";
  223. this.radioButton2.Size = new System.Drawing.Size(35, 16);
  224. this.radioButton2.TabIndex = 19;
  225. this.radioButton2.TabStop = true;
  226. this.radioButton2.Text = "否";
  227. this.radioButton2.UseVisualStyleBackColor = true;
  228. //
  229. // panel3
  230. //
  231. this.panel3.Controls.Add(this.radioButton4);
  232. this.panel3.Controls.Add(this.radioButton5);
  233. this.panel3.Location = new System.Drawing.Point(306, 246);
  234. this.panel3.Name = "panel3";
  235. this.panel3.Size = new System.Drawing.Size(143, 40);
  236. this.panel3.TabIndex = 20;
  237. //
  238. // radioButton4
  239. //
  240. this.radioButton4.AutoSize = true;
  241. this.radioButton4.Checked = true;
  242. this.radioButton4.Location = new System.Drawing.Point(4, 9);
  243. this.radioButton4.Name = "radioButton4";
  244. this.radioButton4.Size = new System.Drawing.Size(35, 16);
  245. this.radioButton4.TabIndex = 18;
  246. this.radioButton4.TabStop = true;
  247. this.radioButton4.Text = "是";
  248. this.radioButton4.UseVisualStyleBackColor = true;
  249. //
  250. // radioButton5
  251. //
  252. this.radioButton5.AutoSize = true;
  253. this.radioButton5.Location = new System.Drawing.Point(89, 9);
  254. this.radioButton5.Name = "radioButton5";
  255. this.radioButton5.Size = new System.Drawing.Size(35, 16);
  256. this.radioButton5.TabIndex = 19;
  257. this.radioButton5.TabStop = true;
  258. this.radioButton5.Text = "否";
  259. this.radioButton5.UseVisualStyleBackColor = true;
  260. //
  261. // panel2
  262. //
  263. this.panel2.Controls.Add(this.radioButton8);
  264. this.panel2.Controls.Add(this.radioButton9);
  265. this.panel2.Location = new System.Drawing.Point(306, 111);
  266. this.panel2.Name = "panel2";
  267. this.panel2.Size = new System.Drawing.Size(143, 40);
  268. this.panel2.TabIndex = 19;
  269. //
  270. // radioButton8
  271. //
  272. this.radioButton8.AutoSize = true;
  273. this.radioButton8.Location = new System.Drawing.Point(4, 9);
  274. this.radioButton8.Name = "radioButton8";
  275. this.radioButton8.Size = new System.Drawing.Size(35, 16);
  276. this.radioButton8.TabIndex = 18;
  277. this.radioButton8.TabStop = true;
  278. this.radioButton8.Text = "是";
  279. this.radioButton8.UseVisualStyleBackColor = true;
  280. //
  281. // radioButton9
  282. //
  283. this.radioButton9.AutoSize = true;
  284. this.radioButton9.Checked = true;
  285. this.radioButton9.Location = new System.Drawing.Point(89, 9);
  286. this.radioButton9.Name = "radioButton9";
  287. this.radioButton9.Size = new System.Drawing.Size(35, 16);
  288. this.radioButton9.TabIndex = 19;
  289. this.radioButton9.TabStop = true;
  290. this.radioButton9.Text = "否";
  291. this.radioButton9.UseVisualStyleBackColor = true;
  292. //
  293. // panel1
  294. //
  295. this.panel1.Controls.Add(this.radioButton7);
  296. this.panel1.Controls.Add(this.radioButton6);
  297. this.panel1.Location = new System.Drawing.Point(306, 66);
  298. this.panel1.Name = "panel1";
  299. this.panel1.Size = new System.Drawing.Size(143, 40);
  300. this.panel1.TabIndex = 18;
  301. //
  302. // radioButton7
  303. //
  304. this.radioButton7.AutoSize = true;
  305. this.radioButton7.Location = new System.Drawing.Point(4, 9);
  306. this.radioButton7.Name = "radioButton7";
  307. this.radioButton7.Size = new System.Drawing.Size(35, 16);
  308. this.radioButton7.TabIndex = 18;
  309. this.radioButton7.Text = "是";
  310. this.radioButton7.UseVisualStyleBackColor = true;
  311. //
  312. // radioButton6
  313. //
  314. this.radioButton6.AutoSize = true;
  315. this.radioButton6.Checked = true;
  316. this.radioButton6.Location = new System.Drawing.Point(89, 9);
  317. this.radioButton6.Name = "radioButton6";
  318. this.radioButton6.Size = new System.Drawing.Size(35, 16);
  319. this.radioButton6.TabIndex = 19;
  320. this.radioButton6.TabStop = true;
  321. this.radioButton6.Text = "否";
  322. this.radioButton6.UseVisualStyleBackColor = true;
  323. //
  324. // label5
  325. //
  326. this.label5.AutoSize = true;
  327. this.label5.Location = new System.Drawing.Point(130, 124);
  328. this.label5.Name = "label5";
  329. this.label5.Size = new System.Drawing.Size(137, 12);
  330. this.label5.TabIndex = 15;
  331. this.label5.Text = "是否自動打開量測視窗:";
  332. //
  333. // label4
  334. //
  335. this.label4.AutoSize = true;
  336. this.label4.Location = new System.Drawing.Point(130, 79);
  337. this.label4.Name = "label4";
  338. this.label4.Size = new System.Drawing.Size(137, 12);
  339. this.label4.TabIndex = 14;
  340. this.label4.Text = "按照固定大小壓縮報告:";
  341. //
  342. // label3
  343. //
  344. this.label3.AutoSize = true;
  345. this.label3.Location = new System.Drawing.Point(154, 259);
  346. this.label3.Name = "label3";
  347. this.label3.Size = new System.Drawing.Size(113, 12);
  348. this.label3.TabIndex = 8;
  349. this.label3.Text = "是否啟用下拉接口:";
  350. //
  351. // label2
  352. //
  353. this.label2.AutoSize = true;
  354. this.label2.Location = new System.Drawing.Point(142, 169);
  355. this.label2.Name = "label2";
  356. this.label2.Size = new System.Drawing.Size(125, 12);
  357. this.label2.TabIndex = 7;
  358. this.label2.Text = "是否啟用实验室上傳:";
  359. //
  360. // numericUpDown1
  361. //
  362. this.numericUpDown1.Location = new System.Drawing.Point(306, 38);
  363. this.numericUpDown1.Maximum = new decimal(new int[] {
  364. 10,
  365. 0,
  366. 0,
  367. 0});
  368. this.numericUpDown1.Name = "numericUpDown1";
  369. this.numericUpDown1.Size = new System.Drawing.Size(120, 21);
  370. this.numericUpDown1.TabIndex = 1;
  371. this.numericUpDown1.Value = new decimal(new int[] {
  372. 2,
  373. 0,
  374. 0,
  375. 0});
  376. //
  377. // label1
  378. //
  379. this.label1.AutoSize = true;
  380. this.label1.Location = new System.Drawing.Point(106, 39);
  381. this.label1.Name = "label1";
  382. this.label1.Size = new System.Drawing.Size(161, 12);
  383. this.label1.TabIndex = 0;
  384. this.label1.Text = "測量及報告輸出小數點位數:";
  385. //
  386. // labelLanguege
  387. //
  388. this.labelLanguege.AutoSize = true;
  389. this.labelLanguege.Location = new System.Drawing.Point(202, 305);
  390. this.labelLanguege.Name = "labelLanguege";
  391. this.labelLanguege.Size = new System.Drawing.Size(65, 12);
  392. this.labelLanguege.TabIndex = 3;
  393. this.labelLanguege.Text = "語言選擇:";
  394. //
  395. // panel6
  396. //
  397. this.panel6.Controls.Add(this.radioTraditionalChnse);
  398. this.panel6.Controls.Add(this.radioSimpleChnse);
  399. this.panel6.Location = new System.Drawing.Point(306, 296);
  400. this.panel6.Name = "panel6";
  401. this.panel6.Size = new System.Drawing.Size(237, 40);
  402. this.panel6.TabIndex = 24;
  403. //
  404. // radioSimpleChnse
  405. //
  406. this.radioSimpleChnse.AutoSize = true;
  407. this.radioSimpleChnse.Location = new System.Drawing.Point(4, 9);
  408. this.radioSimpleChnse.Name = "radioSimpleChnse";
  409. this.radioSimpleChnse.Size = new System.Drawing.Size(71, 16);
  410. this.radioSimpleChnse.TabIndex = 0;
  411. this.radioSimpleChnse.Text = "簡體中文";
  412. this.radioSimpleChnse.UseVisualStyleBackColor = true;
  413. //
  414. // radioTraditionalChnse
  415. //
  416. this.radioTraditionalChnse.AutoSize = true;
  417. this.radioTraditionalChnse.Checked = true;
  418. this.radioTraditionalChnse.Location = new System.Drawing.Point(89, 9);
  419. this.radioTraditionalChnse.Name = "radioTraditionalChnse";
  420. this.radioTraditionalChnse.Size = new System.Drawing.Size(71, 16);
  421. this.radioTraditionalChnse.TabIndex = 1;
  422. this.radioTraditionalChnse.TabStop = true;
  423. this.radioTraditionalChnse.Text = "繁體中文";
  424. this.radioTraditionalChnse.UseVisualStyleBackColor = true;
  425. //
  426. // BasicMeasureDialog
  427. //
  428. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  429. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  430. this.AutoSize = true;
  431. this.ClientSize = new System.Drawing.Size(800, 441);
  432. this.Controls.Add(this.groupBox2);
  433. this.Controls.Add(this.groupBox1);
  434. this.Name = "BasicMeasureDialog";
  435. this.Text = "基础信息";
  436. this.Controls.SetChildIndex(this.groupBox1, 0);
  437. this.Controls.SetChildIndex(this.groupBox2, 0);
  438. this.groupBox1.ResumeLayout(false);
  439. this.groupBox2.ResumeLayout(false);
  440. this.groupBox2.PerformLayout();
  441. this.panel5.ResumeLayout(false);
  442. this.panel5.PerformLayout();
  443. this.panel4.ResumeLayout(false);
  444. this.panel4.PerformLayout();
  445. this.panel3.ResumeLayout(false);
  446. this.panel3.PerformLayout();
  447. this.panel2.ResumeLayout(false);
  448. this.panel2.PerformLayout();
  449. this.panel1.ResumeLayout(false);
  450. this.panel1.PerformLayout();
  451. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  452. this.panel6.ResumeLayout(false);
  453. this.panel6.PerformLayout();
  454. this.ResumeLayout(false);
  455. }
  456. #endregion
  457. private System.Windows.Forms.GroupBox groupBox1;
  458. private System.Windows.Forms.Button buttonCancel;
  459. private System.Windows.Forms.Button buttonDetermine;
  460. private System.Windows.Forms.GroupBox groupBox2;
  461. private System.Windows.Forms.NumericUpDown numericUpDown1;
  462. private System.Windows.Forms.Label label1;
  463. private System.Windows.Forms.Label label3;
  464. private System.Windows.Forms.Label label2;
  465. private System.Windows.Forms.Label label4;
  466. private System.Windows.Forms.Panel panel1;
  467. private System.Windows.Forms.RadioButton radioButton7;
  468. private System.Windows.Forms.RadioButton radioButton6;
  469. private System.Windows.Forms.Panel panel2;
  470. private System.Windows.Forms.RadioButton radioButton8;
  471. private System.Windows.Forms.RadioButton radioButton9;
  472. private System.Windows.Forms.Label label5;
  473. private System.Windows.Forms.Panel panel4;
  474. private System.Windows.Forms.RadioButton radioButton3;
  475. private System.Windows.Forms.RadioButton radioButton1;
  476. private System.Windows.Forms.RadioButton radioButton2;
  477. private System.Windows.Forms.Panel panel3;
  478. private System.Windows.Forms.RadioButton radioButton4;
  479. private System.Windows.Forms.RadioButton radioButton5;
  480. private System.Windows.Forms.Panel panel5;
  481. private System.Windows.Forms.RadioButton radioButton10;
  482. private System.Windows.Forms.RadioButton radioButton11;
  483. private System.Windows.Forms.RadioButton radioButton12;
  484. private System.Windows.Forms.Label label6;
  485. private System.Windows.Forms.Panel panel6;
  486. private System.Windows.Forms.RadioButton radioTraditionalChnse;
  487. private System.Windows.Forms.RadioButton radioSimpleChnse;
  488. private System.Windows.Forms.Label labelLanguege;
  489. }
  490. }