OTSSystemManagerForms.Designer.cs 15 KB

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