OTSSystemManagerForms.Designer.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. namespace OTSSysMgrApp
  2. {
  3. partial class OTSSystemManagerForms
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OTSSystemManagerForms));
  29. this.tabLanguage = new System.Windows.Forms.TabPage();
  30. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  31. this.rdb_en = new System.Windows.Forms.RadioButton();
  32. this.rdb_ch = new System.Windows.Forms.RadioButton();
  33. this.tabControl1 = new System.Windows.Forms.TabControl();
  34. this.tabHardwareSet = new System.Windows.Forms.TabPage();
  35. this.CmbEDSController = new System.Windows.Forms.ComboBox();
  36. this.btnEDSTest = new System.Windows.Forms.Button();
  37. this.btnSEMTest = new System.Windows.Forms.Button();
  38. this.lblHEDSController = new System.Windows.Forms.Label();
  39. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  40. this.button2 = new System.Windows.Forms.Button();
  41. this.button1 = new System.Windows.Forms.Button();
  42. this.tabSysType = new System.Windows.Forms.TabPage();
  43. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  44. this.coB_CleannessType = new System.Windows.Forms.ComboBox();
  45. this.radioButton_CleannessA = new System.Windows.Forms.RadioButton();
  46. this.radioButton_IncA = new System.Windows.Forms.RadioButton();
  47. this.tabother = new System.Windows.Forms.TabPage();
  48. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  49. this.btn_otherconfig = new System.Windows.Forms.Button();
  50. this.lblHSEMController = new System.Windows.Forms.Label();
  51. this.CmbSEMController = new System.Windows.Forms.ComboBox();
  52. this.btnSet = new System.Windows.Forms.Button();
  53. this.tabLanguage.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  55. this.tabControl1.SuspendLayout();
  56. this.tabHardwareSet.SuspendLayout();
  57. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  58. this.tabSysType.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  60. this.tabother.SuspendLayout();
  61. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  62. this.SuspendLayout();
  63. //
  64. // tabLanguage
  65. //
  66. this.tabLanguage.Controls.Add(this.pictureBox3);
  67. this.tabLanguage.Controls.Add(this.rdb_en);
  68. this.tabLanguage.Controls.Add(this.rdb_ch);
  69. this.tabLanguage.Location = new System.Drawing.Point(4, 22);
  70. this.tabLanguage.Margin = new System.Windows.Forms.Padding(2);
  71. this.tabLanguage.Name = "tabLanguage";
  72. this.tabLanguage.Size = new System.Drawing.Size(476, 133);
  73. this.tabLanguage.TabIndex = 2;
  74. this.tabLanguage.Text = "语言";
  75. this.tabLanguage.UseVisualStyleBackColor = true;
  76. //
  77. // pictureBox3
  78. //
  79. this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
  80. this.pictureBox3.Location = new System.Drawing.Point(38, 24);
  81. this.pictureBox3.Margin = new System.Windows.Forms.Padding(2);
  82. this.pictureBox3.Name = "pictureBox3";
  83. this.pictureBox3.Size = new System.Drawing.Size(67, 66);
  84. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  85. this.pictureBox3.TabIndex = 8;
  86. this.pictureBox3.TabStop = false;
  87. //
  88. // rdb_en
  89. //
  90. this.rdb_en.AutoSize = true;
  91. this.rdb_en.Checked = true;
  92. this.rdb_en.Location = new System.Drawing.Point(147, 73);
  93. this.rdb_en.Margin = new System.Windows.Forms.Padding(2);
  94. this.rdb_en.Name = "rdb_en";
  95. this.rdb_en.Size = new System.Drawing.Size(71, 16);
  96. this.rdb_en.TabIndex = 0;
  97. this.rdb_en.TabStop = true;
  98. this.rdb_en.Text = "英文[EN]";
  99. this.rdb_en.UseVisualStyleBackColor = true;
  100. this.rdb_en.Click += new System.EventHandler(this.rdb_en_Click);
  101. //
  102. // rdb_ch
  103. //
  104. this.rdb_ch.AutoSize = true;
  105. this.rdb_ch.Location = new System.Drawing.Point(147, 26);
  106. this.rdb_ch.Margin = new System.Windows.Forms.Padding(2);
  107. this.rdb_ch.Name = "rdb_ch";
  108. this.rdb_ch.Size = new System.Drawing.Size(71, 16);
  109. this.rdb_ch.TabIndex = 0;
  110. this.rdb_ch.Text = "中文[ZH]";
  111. this.rdb_ch.UseVisualStyleBackColor = true;
  112. this.rdb_ch.Click += new System.EventHandler(this.rdb_ch_Click);
  113. //
  114. // tabControl1
  115. //
  116. this.tabControl1.Controls.Add(this.tabHardwareSet);
  117. this.tabControl1.Controls.Add(this.tabLanguage);
  118. this.tabControl1.Controls.Add(this.tabSysType);
  119. this.tabControl1.Controls.Add(this.tabother);
  120. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  121. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  122. this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
  123. this.tabControl1.Name = "tabControl1";
  124. this.tabControl1.SelectedIndex = 0;
  125. this.tabControl1.Size = new System.Drawing.Size(484, 159);
  126. this.tabControl1.TabIndex = 0;
  127. //
  128. // tabHardwareSet
  129. //
  130. this.tabHardwareSet.Controls.Add(this.btnSet);
  131. this.tabHardwareSet.Controls.Add(this.CmbSEMController);
  132. this.tabHardwareSet.Controls.Add(this.lblHSEMController);
  133. this.tabHardwareSet.Controls.Add(this.CmbEDSController);
  134. this.tabHardwareSet.Controls.Add(this.btnEDSTest);
  135. this.tabHardwareSet.Controls.Add(this.btnSEMTest);
  136. this.tabHardwareSet.Controls.Add(this.lblHEDSController);
  137. this.tabHardwareSet.Controls.Add(this.pictureBox2);
  138. this.tabHardwareSet.Controls.Add(this.button2);
  139. this.tabHardwareSet.Controls.Add(this.button1);
  140. this.tabHardwareSet.Location = new System.Drawing.Point(4, 22);
  141. this.tabHardwareSet.Margin = new System.Windows.Forms.Padding(2);
  142. this.tabHardwareSet.Name = "tabHardwareSet";
  143. this.tabHardwareSet.Padding = new System.Windows.Forms.Padding(2);
  144. this.tabHardwareSet.Size = new System.Drawing.Size(476, 133);
  145. this.tabHardwareSet.TabIndex = 1;
  146. this.tabHardwareSet.Text = "硬件";
  147. this.tabHardwareSet.UseVisualStyleBackColor = true;
  148. //
  149. // CmbEDSController
  150. //
  151. this.CmbEDSController.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  152. this.CmbEDSController.FormattingEnabled = true;
  153. this.CmbEDSController.Items.AddRange(new object[] {
  154. "Bruker",
  155. "OffLine",
  156. "Oxford",
  157. "FEI"});
  158. this.CmbEDSController.Location = new System.Drawing.Point(197, 60);
  159. this.CmbEDSController.Margin = new System.Windows.Forms.Padding(2);
  160. this.CmbEDSController.Name = "CmbEDSController";
  161. this.CmbEDSController.Size = new System.Drawing.Size(121, 20);
  162. this.CmbEDSController.TabIndex = 14;
  163. this.CmbEDSController.SelectedIndexChanged += new System.EventHandler(this.CmbEDSController_SelectedIndexChanged);
  164. //
  165. // btnEDSTest
  166. //
  167. this.btnEDSTest.Location = new System.Drawing.Point(353, 58);
  168. this.btnEDSTest.Margin = new System.Windows.Forms.Padding(2);
  169. this.btnEDSTest.Name = "btnEDSTest";
  170. this.btnEDSTest.Size = new System.Drawing.Size(77, 24);
  171. this.btnEDSTest.TabIndex = 12;
  172. this.btnEDSTest.Text = "EDS测试";
  173. this.btnEDSTest.UseVisualStyleBackColor = true;
  174. this.btnEDSTest.Click += new System.EventHandler(this.btnEDSTest_Click);
  175. //
  176. // btnSEMTest
  177. //
  178. this.btnSEMTest.Location = new System.Drawing.Point(353, 13);
  179. this.btnSEMTest.Margin = new System.Windows.Forms.Padding(2);
  180. this.btnSEMTest.Name = "btnSEMTest";
  181. this.btnSEMTest.Size = new System.Drawing.Size(77, 24);
  182. this.btnSEMTest.TabIndex = 10;
  183. this.btnSEMTest.Text = "SEM测试";
  184. this.btnSEMTest.UseVisualStyleBackColor = true;
  185. this.btnSEMTest.Click += new System.EventHandler(this.btnSEMTest_Click);
  186. //
  187. // lblHEDSController
  188. //
  189. this.lblHEDSController.AutoSize = true;
  190. this.lblHEDSController.Location = new System.Drawing.Point(121, 64);
  191. this.lblHEDSController.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  192. this.lblHEDSController.Name = "lblHEDSController";
  193. this.lblHEDSController.Size = new System.Drawing.Size(59, 12);
  194. this.lblHEDSController.TabIndex = 8;
  195. this.lblHEDSController.Text = "EDS控制器";
  196. //
  197. // pictureBox2
  198. //
  199. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  200. this.pictureBox2.Location = new System.Drawing.Point(38, 24);
  201. this.pictureBox2.Margin = new System.Windows.Forms.Padding(2);
  202. this.pictureBox2.Name = "pictureBox2";
  203. this.pictureBox2.Size = new System.Drawing.Size(67, 66);
  204. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  205. this.pictureBox2.TabIndex = 7;
  206. this.pictureBox2.TabStop = false;
  207. //
  208. // button2
  209. //
  210. this.button2.Location = new System.Drawing.Point(482, 366);
  211. this.button2.Margin = new System.Windows.Forms.Padding(2);
  212. this.button2.Name = "button2";
  213. this.button2.Size = new System.Drawing.Size(67, 22);
  214. this.button2.TabIndex = 2;
  215. this.button2.Text = "button1";
  216. this.button2.UseVisualStyleBackColor = true;
  217. //
  218. // button1
  219. //
  220. this.button1.Location = new System.Drawing.Point(410, 366);
  221. this.button1.Margin = new System.Windows.Forms.Padding(2);
  222. this.button1.Name = "button1";
  223. this.button1.Size = new System.Drawing.Size(67, 22);
  224. this.button1.TabIndex = 2;
  225. this.button1.Text = "button1";
  226. this.button1.UseVisualStyleBackColor = true;
  227. //
  228. // tabSysType
  229. //
  230. this.tabSysType.Controls.Add(this.pictureBox4);
  231. this.tabSysType.Controls.Add(this.coB_CleannessType);
  232. this.tabSysType.Controls.Add(this.radioButton_CleannessA);
  233. this.tabSysType.Controls.Add(this.radioButton_IncA);
  234. this.tabSysType.Location = new System.Drawing.Point(4, 22);
  235. this.tabSysType.Name = "tabSysType";
  236. this.tabSysType.Padding = new System.Windows.Forms.Padding(3);
  237. this.tabSysType.Size = new System.Drawing.Size(476, 133);
  238. this.tabSysType.TabIndex = 3;
  239. this.tabSysType.Text = "系统类型设置";
  240. this.tabSysType.UseVisualStyleBackColor = true;
  241. //
  242. // pictureBox4
  243. //
  244. this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
  245. this.pictureBox4.Location = new System.Drawing.Point(38, 24);
  246. this.pictureBox4.Margin = new System.Windows.Forms.Padding(2);
  247. this.pictureBox4.Name = "pictureBox4";
  248. this.pictureBox4.Size = new System.Drawing.Size(67, 66);
  249. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  250. this.pictureBox4.TabIndex = 9;
  251. this.pictureBox4.TabStop = false;
  252. //
  253. // coB_CleannessType
  254. //
  255. this.coB_CleannessType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  256. this.coB_CleannessType.FormattingEnabled = true;
  257. this.coB_CleannessType.Location = new System.Drawing.Point(217, 74);
  258. this.coB_CleannessType.Name = "coB_CleannessType";
  259. this.coB_CleannessType.Size = new System.Drawing.Size(121, 20);
  260. this.coB_CleannessType.TabIndex = 2;
  261. this.coB_CleannessType.SelectedIndexChanged += new System.EventHandler(this.coB_CleannessType_SelectedIndexChanged);
  262. //
  263. // radioButton_CleannessA
  264. //
  265. this.radioButton_CleannessA.AutoSize = true;
  266. this.radioButton_CleannessA.Location = new System.Drawing.Point(134, 75);
  267. this.radioButton_CleannessA.Name = "radioButton_CleannessA";
  268. this.radioButton_CleannessA.Size = new System.Drawing.Size(65, 16);
  269. this.radioButton_CleannessA.TabIndex = 1;
  270. this.radioButton_CleannessA.TabStop = true;
  271. this.radioButton_CleannessA.Text = " OTS102";
  272. this.radioButton_CleannessA.UseVisualStyleBackColor = true;
  273. //
  274. // radioButton_IncA
  275. //
  276. this.radioButton_IncA.AutoSize = true;
  277. this.radioButton_IncA.Location = new System.Drawing.Point(134, 29);
  278. this.radioButton_IncA.Name = "radioButton_IncA";
  279. this.radioButton_IncA.Size = new System.Drawing.Size(65, 16);
  280. this.radioButton_IncA.TabIndex = 0;
  281. this.radioButton_IncA.TabStop = true;
  282. this.radioButton_IncA.Text = " OTS101";
  283. this.radioButton_IncA.UseVisualStyleBackColor = true;
  284. this.radioButton_IncA.CheckedChanged += new System.EventHandler(this.radioButton_IncA_CheckedChanged);
  285. //
  286. // tabother
  287. //
  288. this.tabother.Controls.Add(this.pictureBox1);
  289. this.tabother.Controls.Add(this.btn_otherconfig);
  290. this.tabother.Location = new System.Drawing.Point(4, 22);
  291. this.tabother.Name = "tabother";
  292. this.tabother.Padding = new System.Windows.Forms.Padding(3);
  293. this.tabother.Size = new System.Drawing.Size(476, 133);
  294. this.tabother.TabIndex = 4;
  295. this.tabother.Text = "其它";
  296. this.tabother.UseVisualStyleBackColor = true;
  297. //
  298. // pictureBox1
  299. //
  300. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  301. this.pictureBox1.Location = new System.Drawing.Point(38, 24);
  302. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  303. this.pictureBox1.Name = "pictureBox1";
  304. this.pictureBox1.Size = new System.Drawing.Size(67, 66);
  305. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  306. this.pictureBox1.TabIndex = 8;
  307. this.pictureBox1.TabStop = false;
  308. //
  309. // btn_otherconfig
  310. //
  311. this.btn_otherconfig.Location = new System.Drawing.Point(167, 37);
  312. this.btn_otherconfig.Name = "btn_otherconfig";
  313. this.btn_otherconfig.Size = new System.Drawing.Size(114, 37);
  314. this.btn_otherconfig.TabIndex = 0;
  315. this.btn_otherconfig.Text = "其它配置";
  316. this.btn_otherconfig.UseVisualStyleBackColor = true;
  317. this.btn_otherconfig.Click += new System.EventHandler(this.btn_otherconfig_Click);
  318. //
  319. // lblHSEMController
  320. //
  321. this.lblHSEMController.AutoSize = true;
  322. this.lblHSEMController.Location = new System.Drawing.Point(121, 19);
  323. this.lblHSEMController.Name = "lblHSEMController";
  324. this.lblHSEMController.Size = new System.Drawing.Size(59, 12);
  325. this.lblHSEMController.TabIndex = 15;
  326. this.lblHSEMController.Text = "SEM控制器";
  327. //
  328. // CmbSEMController
  329. //
  330. this.CmbSEMController.FormattingEnabled = true;
  331. this.CmbSEMController.Items.AddRange(new object[] {
  332. "FEI",
  333. "ZEISS",
  334. "Coxm",
  335. "PicoSmart",
  336. "OffLine"});
  337. this.CmbSEMController.Location = new System.Drawing.Point(197, 15);
  338. this.CmbSEMController.Name = "CmbSEMController";
  339. this.CmbSEMController.Size = new System.Drawing.Size(121, 20);
  340. this.CmbSEMController.TabIndex = 16;
  341. //
  342. // btnSet
  343. //
  344. this.btnSet.Location = new System.Drawing.Point(197, 101);
  345. this.btnSet.Name = "btnSet";
  346. this.btnSet.Size = new System.Drawing.Size(121, 23);
  347. this.btnSet.TabIndex = 17;
  348. this.btnSet.Text = "设置";
  349. this.btnSet.UseVisualStyleBackColor = true;
  350. this.btnSet.Click += new System.EventHandler(this.btnSet_Click);
  351. //
  352. // OTSSystemManagerForms
  353. //
  354. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  355. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  356. this.BackColor = System.Drawing.Color.White;
  357. this.ClientSize = new System.Drawing.Size(484, 159);
  358. this.Controls.Add(this.tabControl1);
  359. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  360. this.Margin = new System.Windows.Forms.Padding(2);
  361. this.MaximizeBox = false;
  362. this.MaximumSize = new System.Drawing.Size(500, 198);
  363. this.MinimumSize = new System.Drawing.Size(500, 198);
  364. this.Name = "OTSSystemManagerForms";
  365. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  366. this.Text = "SysMgrApp";
  367. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OTSSystemManagerForms_FormClosing);
  368. this.Load += new System.EventHandler(this.OTSSystemManagerForms_Load);
  369. this.tabLanguage.ResumeLayout(false);
  370. this.tabLanguage.PerformLayout();
  371. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  372. this.tabControl1.ResumeLayout(false);
  373. this.tabHardwareSet.ResumeLayout(false);
  374. this.tabHardwareSet.PerformLayout();
  375. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  376. this.tabSysType.ResumeLayout(false);
  377. this.tabSysType.PerformLayout();
  378. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  379. this.tabother.ResumeLayout(false);
  380. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  381. this.ResumeLayout(false);
  382. }
  383. #endregion
  384. private System.Windows.Forms.TabPage tabLanguage;
  385. private System.Windows.Forms.PictureBox pictureBox3;
  386. private System.Windows.Forms.RadioButton rdb_en;
  387. private System.Windows.Forms.RadioButton rdb_ch;
  388. private System.Windows.Forms.TabControl tabControl1;
  389. private System.Windows.Forms.TabPage tabHardwareSet;
  390. private System.Windows.Forms.ComboBox CmbEDSController;
  391. private System.Windows.Forms.Button btnEDSTest;
  392. private System.Windows.Forms.Button btnSEMTest;
  393. private System.Windows.Forms.Label lblHEDSController;
  394. private System.Windows.Forms.PictureBox pictureBox2;
  395. private System.Windows.Forms.Button button2;
  396. private System.Windows.Forms.Button button1;
  397. private System.Windows.Forms.TabPage tabSysType;
  398. private System.Windows.Forms.RadioButton radioButton_CleannessA;
  399. private System.Windows.Forms.RadioButton radioButton_IncA;
  400. private System.Windows.Forms.ComboBox coB_CleannessType;
  401. private System.Windows.Forms.TabPage tabother;
  402. private System.Windows.Forms.PictureBox pictureBox1;
  403. private System.Windows.Forms.Button btn_otherconfig;
  404. private System.Windows.Forms.PictureBox pictureBox4;
  405. private System.Windows.Forms.ComboBox CmbSEMController;
  406. private System.Windows.Forms.Label lblHSEMController;
  407. private System.Windows.Forms.Button btnSet;
  408. }
  409. }