OTSSystemManagerForms.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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.tabHardwareSet = new System.Windows.Forms.TabPage();
  34. this.rbEsprit21 = new System.Windows.Forms.RadioButton();
  35. this.rbEsprit19 = new System.Windows.Forms.RadioButton();
  36. this.CmbSEMController = new System.Windows.Forms.ComboBox();
  37. this.CmbEDSController = new System.Windows.Forms.ComboBox();
  38. this.btnEDSTest = new System.Windows.Forms.Button();
  39. this.btnSEMTest = new System.Windows.Forms.Button();
  40. this.label1 = new System.Windows.Forms.Label();
  41. this.lblHEDSController = new System.Windows.Forms.Label();
  42. this.lblHSEMController = new System.Windows.Forms.Label();
  43. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  44. this.button2 = new System.Windows.Forms.Button();
  45. this.button1 = new System.Windows.Forms.Button();
  46. this.tabControl1 = new System.Windows.Forms.TabControl();
  47. this.tabLanguage.SuspendLayout();
  48. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  49. this.tabHardwareSet.SuspendLayout();
  50. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  51. this.tabControl1.SuspendLayout();
  52. this.SuspendLayout();
  53. //
  54. // tabLanguage
  55. //
  56. this.tabLanguage.Controls.Add(this.pictureBox3);
  57. this.tabLanguage.Controls.Add(this.rdb_en);
  58. this.tabLanguage.Controls.Add(this.rdb_ch);
  59. this.tabLanguage.Location = new System.Drawing.Point(4, 22);
  60. this.tabLanguage.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  61. this.tabLanguage.Name = "tabLanguage";
  62. this.tabLanguage.Size = new System.Drawing.Size(549, 204);
  63. this.tabLanguage.TabIndex = 2;
  64. this.tabLanguage.Text = "语言";
  65. this.tabLanguage.UseVisualStyleBackColor = true;
  66. //
  67. // pictureBox3
  68. //
  69. this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
  70. this.pictureBox3.Location = new System.Drawing.Point(38, 22);
  71. this.pictureBox3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  72. this.pictureBox3.Name = "pictureBox3";
  73. this.pictureBox3.Size = new System.Drawing.Size(67, 66);
  74. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  75. this.pictureBox3.TabIndex = 8;
  76. this.pictureBox3.TabStop = false;
  77. //
  78. // rdb_en
  79. //
  80. this.rdb_en.AutoSize = true;
  81. this.rdb_en.Location = new System.Drawing.Point(147, 58);
  82. this.rdb_en.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  83. this.rdb_en.Name = "rdb_en";
  84. this.rdb_en.Size = new System.Drawing.Size(71, 16);
  85. this.rdb_en.TabIndex = 0;
  86. this.rdb_en.TabStop = true;
  87. this.rdb_en.Text = "英文[EN]";
  88. this.rdb_en.UseVisualStyleBackColor = true;
  89. this.rdb_en.Click += new System.EventHandler(this.rdb_en_Click);
  90. //
  91. // rdb_ch
  92. //
  93. this.rdb_ch.AutoSize = true;
  94. this.rdb_ch.Location = new System.Drawing.Point(147, 25);
  95. this.rdb_ch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  96. this.rdb_ch.Name = "rdb_ch";
  97. this.rdb_ch.Size = new System.Drawing.Size(71, 16);
  98. this.rdb_ch.TabIndex = 0;
  99. this.rdb_ch.TabStop = true;
  100. this.rdb_ch.Text = "中文[ZH]";
  101. this.rdb_ch.UseVisualStyleBackColor = true;
  102. this.rdb_ch.Click += new System.EventHandler(this.rdb_ch_Click);
  103. //
  104. // tabHardwareSet
  105. //
  106. this.tabHardwareSet.Controls.Add(this.rbEsprit21);
  107. this.tabHardwareSet.Controls.Add(this.rbEsprit19);
  108. this.tabHardwareSet.Controls.Add(this.CmbSEMController);
  109. this.tabHardwareSet.Controls.Add(this.CmbEDSController);
  110. this.tabHardwareSet.Controls.Add(this.btnEDSTest);
  111. this.tabHardwareSet.Controls.Add(this.btnSEMTest);
  112. this.tabHardwareSet.Controls.Add(this.label1);
  113. this.tabHardwareSet.Controls.Add(this.lblHEDSController);
  114. this.tabHardwareSet.Controls.Add(this.lblHSEMController);
  115. this.tabHardwareSet.Controls.Add(this.pictureBox2);
  116. this.tabHardwareSet.Controls.Add(this.button2);
  117. this.tabHardwareSet.Controls.Add(this.button1);
  118. this.tabHardwareSet.Location = new System.Drawing.Point(4, 22);
  119. this.tabHardwareSet.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  120. this.tabHardwareSet.Name = "tabHardwareSet";
  121. this.tabHardwareSet.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
  122. this.tabHardwareSet.Size = new System.Drawing.Size(549, 204);
  123. this.tabHardwareSet.TabIndex = 1;
  124. this.tabHardwareSet.Text = "硬件";
  125. this.tabHardwareSet.UseVisualStyleBackColor = true;
  126. //
  127. // rbEsprit21
  128. //
  129. this.rbEsprit21.AutoSize = true;
  130. this.rbEsprit21.Location = new System.Drawing.Point(198, 142);
  131. this.rbEsprit21.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  132. this.rbEsprit21.Name = "rbEsprit21";
  133. this.rbEsprit21.Size = new System.Drawing.Size(167, 16);
  134. this.rbEsprit21.TabIndex = 15;
  135. this.rbEsprit21.Text = "Bruker.API.Esprit2.1.dll";
  136. this.rbEsprit21.UseVisualStyleBackColor = true;
  137. this.rbEsprit21.CheckedChanged += new System.EventHandler(this.rbEsprit21_CheckedChanged);
  138. //
  139. // rbEsprit19
  140. //
  141. this.rbEsprit19.AutoSize = true;
  142. this.rbEsprit19.Checked = true;
  143. this.rbEsprit19.Location = new System.Drawing.Point(198, 120);
  144. this.rbEsprit19.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  145. this.rbEsprit19.Name = "rbEsprit19";
  146. this.rbEsprit19.Size = new System.Drawing.Size(167, 16);
  147. this.rbEsprit19.TabIndex = 15;
  148. this.rbEsprit19.TabStop = true;
  149. this.rbEsprit19.Text = "Bruker.API.Esprit1.9.dll";
  150. this.rbEsprit19.UseVisualStyleBackColor = true;
  151. this.rbEsprit19.CheckedChanged += new System.EventHandler(this.rbEsprit19_CheckedChanged);
  152. //
  153. // CmbSEMController
  154. //
  155. this.CmbSEMController.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  156. this.CmbSEMController.FormattingEnabled = true;
  157. this.CmbSEMController.Items.AddRange(new object[] {
  158. "Bruker",
  159. "OffLine",
  160. "ESEM",
  161. "ZEISS",
  162. "Oxford"});
  163. this.CmbSEMController.Location = new System.Drawing.Point(183, 22);
  164. this.CmbSEMController.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  165. this.CmbSEMController.Name = "CmbSEMController";
  166. this.CmbSEMController.Size = new System.Drawing.Size(237, 20);
  167. this.CmbSEMController.TabIndex = 13;
  168. //
  169. // CmbEDSController
  170. //
  171. this.CmbEDSController.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  172. this.CmbEDSController.FormattingEnabled = true;
  173. this.CmbEDSController.Items.AddRange(new object[] {
  174. "Bruker",
  175. "OffLine",
  176. "Oxford"});
  177. this.CmbEDSController.Location = new System.Drawing.Point(183, 74);
  178. this.CmbEDSController.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  179. this.CmbEDSController.Name = "CmbEDSController";
  180. this.CmbEDSController.Size = new System.Drawing.Size(237, 20);
  181. this.CmbEDSController.TabIndex = 14;
  182. //
  183. // btnEDSTest
  184. //
  185. this.btnEDSTest.Location = new System.Drawing.Point(429, 70);
  186. this.btnEDSTest.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  187. this.btnEDSTest.Name = "btnEDSTest";
  188. this.btnEDSTest.Size = new System.Drawing.Size(77, 24);
  189. this.btnEDSTest.TabIndex = 12;
  190. this.btnEDSTest.Text = "EDS测试";
  191. this.btnEDSTest.UseVisualStyleBackColor = true;
  192. this.btnEDSTest.Click += new System.EventHandler(this.btnEDSTest_Click);
  193. //
  194. // btnSEMTest
  195. //
  196. this.btnSEMTest.Location = new System.Drawing.Point(429, 20);
  197. this.btnSEMTest.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  198. this.btnSEMTest.Name = "btnSEMTest";
  199. this.btnSEMTest.Size = new System.Drawing.Size(77, 24);
  200. this.btnSEMTest.TabIndex = 10;
  201. this.btnSEMTest.Text = "SEM测试";
  202. this.btnSEMTest.UseVisualStyleBackColor = true;
  203. this.btnSEMTest.Click += new System.EventHandler(this.btnSEMTest_Click);
  204. //
  205. // label1
  206. //
  207. this.label1.AutoSize = true;
  208. this.label1.Location = new System.Drawing.Point(116, 122);
  209. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  210. this.label1.Name = "label1";
  211. this.label1.Size = new System.Drawing.Size(65, 12);
  212. this.label1.TabIndex = 8;
  213. this.label1.Text = "Bruker版本";
  214. //
  215. // lblHEDSController
  216. //
  217. this.lblHEDSController.AutoSize = true;
  218. this.lblHEDSController.Location = new System.Drawing.Point(122, 74);
  219. this.lblHEDSController.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  220. this.lblHEDSController.Name = "lblHEDSController";
  221. this.lblHEDSController.Size = new System.Drawing.Size(59, 12);
  222. this.lblHEDSController.TabIndex = 8;
  223. this.lblHEDSController.Text = "EDS控制器";
  224. //
  225. // lblHSEMController
  226. //
  227. this.lblHSEMController.AutoSize = true;
  228. this.lblHSEMController.Location = new System.Drawing.Point(122, 26);
  229. this.lblHSEMController.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  230. this.lblHSEMController.Name = "lblHSEMController";
  231. this.lblHSEMController.Size = new System.Drawing.Size(59, 12);
  232. this.lblHSEMController.TabIndex = 9;
  233. this.lblHSEMController.Text = "SEM控制器";
  234. //
  235. // pictureBox2
  236. //
  237. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  238. this.pictureBox2.Location = new System.Drawing.Point(38, 22);
  239. this.pictureBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  240. this.pictureBox2.Name = "pictureBox2";
  241. this.pictureBox2.Size = new System.Drawing.Size(67, 66);
  242. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  243. this.pictureBox2.TabIndex = 7;
  244. this.pictureBox2.TabStop = false;
  245. //
  246. // button2
  247. //
  248. this.button2.Location = new System.Drawing.Point(482, 366);
  249. this.button2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  250. this.button2.Name = "button2";
  251. this.button2.Size = new System.Drawing.Size(67, 22);
  252. this.button2.TabIndex = 2;
  253. this.button2.Text = "button1";
  254. this.button2.UseVisualStyleBackColor = true;
  255. //
  256. // button1
  257. //
  258. this.button1.Location = new System.Drawing.Point(410, 366);
  259. this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  260. this.button1.Name = "button1";
  261. this.button1.Size = new System.Drawing.Size(67, 22);
  262. this.button1.TabIndex = 2;
  263. this.button1.Text = "button1";
  264. this.button1.UseVisualStyleBackColor = true;
  265. //
  266. // tabControl1
  267. //
  268. this.tabControl1.Controls.Add(this.tabHardwareSet);
  269. this.tabControl1.Controls.Add(this.tabLanguage);
  270. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  271. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  272. this.tabControl1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  273. this.tabControl1.Name = "tabControl1";
  274. this.tabControl1.SelectedIndex = 0;
  275. this.tabControl1.Size = new System.Drawing.Size(557, 230);
  276. this.tabControl1.TabIndex = 0;
  277. //
  278. // OTSSystemManagerForms
  279. //
  280. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  281. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  282. this.BackColor = System.Drawing.Color.White;
  283. this.ClientSize = new System.Drawing.Size(557, 230);
  284. this.Controls.Add(this.tabControl1);
  285. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  286. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  287. this.MaximizeBox = false;
  288. this.MaximumSize = new System.Drawing.Size(573, 269);
  289. this.MinimumSize = new System.Drawing.Size(573, 269);
  290. this.Name = "OTSSystemManagerForms";
  291. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  292. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OTSSystemManagerForms_FormClosing);
  293. this.Load += new System.EventHandler(this.OTSSystemManagerForms_Load);
  294. this.tabLanguage.ResumeLayout(false);
  295. this.tabLanguage.PerformLayout();
  296. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  297. this.tabHardwareSet.ResumeLayout(false);
  298. this.tabHardwareSet.PerformLayout();
  299. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  300. this.tabControl1.ResumeLayout(false);
  301. this.ResumeLayout(false);
  302. }
  303. #endregion
  304. private System.Windows.Forms.TabPage tabLanguage;
  305. private System.Windows.Forms.PictureBox pictureBox3;
  306. private System.Windows.Forms.RadioButton rdb_en;
  307. private System.Windows.Forms.RadioButton rdb_ch;
  308. private System.Windows.Forms.TabPage tabHardwareSet;
  309. private System.Windows.Forms.RadioButton rbEsprit21;
  310. private System.Windows.Forms.RadioButton rbEsprit19;
  311. private System.Windows.Forms.ComboBox CmbSEMController;
  312. private System.Windows.Forms.ComboBox CmbEDSController;
  313. private System.Windows.Forms.Button btnEDSTest;
  314. private System.Windows.Forms.Button btnSEMTest;
  315. private System.Windows.Forms.Label label1;
  316. private System.Windows.Forms.Label lblHEDSController;
  317. private System.Windows.Forms.Label lblHSEMController;
  318. private System.Windows.Forms.PictureBox pictureBox2;
  319. private System.Windows.Forms.Button button2;
  320. private System.Windows.Forms.Button button1;
  321. private System.Windows.Forms.TabControl tabControl1;
  322. }
  323. }