SetSEMDATAMParameterWindows.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. namespace OTSMeasureApp._4_OTSSamplespaceGraphicsPanel
  2. {
  3. partial class SetSEMDATAMParameterWindows
  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. this.label1 = new System.Windows.Forms.Label();
  29. this.tB_distance = new System.Windows.Forms.TextBox();
  30. this.btn_distance = new System.Windows.Forms.Button();
  31. this.btn_setbrightness = new System.Windows.Forms.Button();
  32. this.tB_Brightness = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.btn_setContrast = new System.Windows.Forms.Button();
  35. this.tB_Contrast = new System.Windows.Forms.TextBox();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.btn_setAcceleratingVoltage = new System.Windows.Forms.Button();
  38. this.tB_AcceleratingVoltage = new System.Windows.Forms.TextBox();
  39. this.label4 = new System.Windows.Forms.Label();
  40. this.btn_setMagnification = new System.Windows.Forms.Button();
  41. this.tB_Magnification = new System.Windows.Forms.TextBox();
  42. this.label5 = new System.Windows.Forms.Label();
  43. this.btn_setXYR = new System.Windows.Forms.Button();
  44. this.tB_X = new System.Windows.Forms.TextBox();
  45. this.label6 = new System.Windows.Forms.Label();
  46. this.tB_Y = new System.Windows.Forms.TextBox();
  47. this.label7 = new System.Windows.Forms.Label();
  48. this.tB_R = new System.Windows.Forms.TextBox();
  49. this.label8 = new System.Windows.Forms.Label();
  50. this.panel1 = new System.Windows.Forms.Panel();
  51. this.panel2 = new System.Windows.Forms.Panel();
  52. this.panel1.SuspendLayout();
  53. this.panel2.SuspendLayout();
  54. this.SuspendLayout();
  55. //
  56. // label1
  57. //
  58. this.label1.AutoSize = true;
  59. this.label1.Location = new System.Drawing.Point(10, 16);
  60. this.label1.Name = "label1";
  61. this.label1.Size = new System.Drawing.Size(53, 12);
  62. this.label1.TabIndex = 0;
  63. this.label1.Text = "工作距离";
  64. //
  65. // tB_distance
  66. //
  67. this.tB_distance.Location = new System.Drawing.Point(79, 13);
  68. this.tB_distance.Name = "tB_distance";
  69. this.tB_distance.Size = new System.Drawing.Size(100, 21);
  70. this.tB_distance.TabIndex = 1;
  71. this.tB_distance.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  72. //
  73. // btn_distance
  74. //
  75. this.btn_distance.Location = new System.Drawing.Point(200, 13);
  76. this.btn_distance.Name = "btn_distance";
  77. this.btn_distance.Size = new System.Drawing.Size(75, 23);
  78. this.btn_distance.TabIndex = 20;
  79. this.btn_distance.Text = "设定";
  80. this.btn_distance.UseVisualStyleBackColor = true;
  81. this.btn_distance.Click += new System.EventHandler(this.btn_distance_Click);
  82. //
  83. // btn_setbrightness
  84. //
  85. this.btn_setbrightness.Location = new System.Drawing.Point(200, 54);
  86. this.btn_setbrightness.Name = "btn_setbrightness";
  87. this.btn_setbrightness.Size = new System.Drawing.Size(75, 23);
  88. this.btn_setbrightness.TabIndex = 5;
  89. this.btn_setbrightness.Text = "设定";
  90. this.btn_setbrightness.UseVisualStyleBackColor = true;
  91. this.btn_setbrightness.Click += new System.EventHandler(this.btn_setbrightness_Click);
  92. //
  93. // tB_Brightness
  94. //
  95. this.tB_Brightness.Location = new System.Drawing.Point(79, 54);
  96. this.tB_Brightness.Name = "tB_Brightness";
  97. this.tB_Brightness.Size = new System.Drawing.Size(100, 21);
  98. this.tB_Brightness.TabIndex = 4;
  99. this.tB_Brightness.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  100. //
  101. // label2
  102. //
  103. this.label2.AutoSize = true;
  104. this.label2.Location = new System.Drawing.Point(10, 57);
  105. this.label2.Name = "label2";
  106. this.label2.Size = new System.Drawing.Size(29, 12);
  107. this.label2.TabIndex = 3;
  108. this.label2.Text = "亮度";
  109. //
  110. // btn_setContrast
  111. //
  112. this.btn_setContrast.Location = new System.Drawing.Point(200, 95);
  113. this.btn_setContrast.Name = "btn_setContrast";
  114. this.btn_setContrast.Size = new System.Drawing.Size(75, 23);
  115. this.btn_setContrast.TabIndex = 8;
  116. this.btn_setContrast.Text = "设定";
  117. this.btn_setContrast.UseVisualStyleBackColor = true;
  118. this.btn_setContrast.Click += new System.EventHandler(this.btn_setContrast_Click);
  119. //
  120. // tB_Contrast
  121. //
  122. this.tB_Contrast.Location = new System.Drawing.Point(79, 95);
  123. this.tB_Contrast.Name = "tB_Contrast";
  124. this.tB_Contrast.Size = new System.Drawing.Size(100, 21);
  125. this.tB_Contrast.TabIndex = 7;
  126. this.tB_Contrast.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  127. //
  128. // label3
  129. //
  130. this.label3.AutoSize = true;
  131. this.label3.Location = new System.Drawing.Point(10, 98);
  132. this.label3.Name = "label3";
  133. this.label3.Size = new System.Drawing.Size(41, 12);
  134. this.label3.TabIndex = 6;
  135. this.label3.Text = "对比度";
  136. //
  137. // btn_setAcceleratingVoltage
  138. //
  139. this.btn_setAcceleratingVoltage.Location = new System.Drawing.Point(200, 135);
  140. this.btn_setAcceleratingVoltage.Name = "btn_setAcceleratingVoltage";
  141. this.btn_setAcceleratingVoltage.Size = new System.Drawing.Size(75, 23);
  142. this.btn_setAcceleratingVoltage.TabIndex = 11;
  143. this.btn_setAcceleratingVoltage.Text = "设定";
  144. this.btn_setAcceleratingVoltage.UseVisualStyleBackColor = true;
  145. this.btn_setAcceleratingVoltage.Click += new System.EventHandler(this.btn_setAcceleratingVoltage_Click);
  146. //
  147. // tB_AcceleratingVoltage
  148. //
  149. this.tB_AcceleratingVoltage.Location = new System.Drawing.Point(79, 135);
  150. this.tB_AcceleratingVoltage.Name = "tB_AcceleratingVoltage";
  151. this.tB_AcceleratingVoltage.Size = new System.Drawing.Size(100, 21);
  152. this.tB_AcceleratingVoltage.TabIndex = 10;
  153. this.tB_AcceleratingVoltage.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  154. //
  155. // label4
  156. //
  157. this.label4.AutoSize = true;
  158. this.label4.Location = new System.Drawing.Point(10, 138);
  159. this.label4.Name = "label4";
  160. this.label4.Size = new System.Drawing.Size(53, 12);
  161. this.label4.TabIndex = 9;
  162. this.label4.Text = "加速电压";
  163. //
  164. // btn_setMagnification
  165. //
  166. this.btn_setMagnification.Location = new System.Drawing.Point(200, 175);
  167. this.btn_setMagnification.Name = "btn_setMagnification";
  168. this.btn_setMagnification.Size = new System.Drawing.Size(75, 23);
  169. this.btn_setMagnification.TabIndex = 14;
  170. this.btn_setMagnification.Text = "设定";
  171. this.btn_setMagnification.UseVisualStyleBackColor = true;
  172. this.btn_setMagnification.Click += new System.EventHandler(this.btn_setMagnification_Click);
  173. //
  174. // tB_Magnification
  175. //
  176. this.tB_Magnification.Location = new System.Drawing.Point(79, 175);
  177. this.tB_Magnification.Name = "tB_Magnification";
  178. this.tB_Magnification.Size = new System.Drawing.Size(100, 21);
  179. this.tB_Magnification.TabIndex = 13;
  180. this.tB_Magnification.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  181. //
  182. // label5
  183. //
  184. this.label5.AutoSize = true;
  185. this.label5.Location = new System.Drawing.Point(10, 178);
  186. this.label5.Name = "label5";
  187. this.label5.Size = new System.Drawing.Size(53, 12);
  188. this.label5.TabIndex = 12;
  189. this.label5.Text = "放大倍数";
  190. //
  191. // btn_setXYR
  192. //
  193. this.btn_setXYR.Location = new System.Drawing.Point(150, 16);
  194. this.btn_setXYR.Name = "btn_setXYR";
  195. this.btn_setXYR.Size = new System.Drawing.Size(75, 105);
  196. this.btn_setXYR.TabIndex = 17;
  197. this.btn_setXYR.Text = "设定";
  198. this.btn_setXYR.UseVisualStyleBackColor = true;
  199. this.btn_setXYR.Click += new System.EventHandler(this.btn_setXYR_Click);
  200. //
  201. // tB_X
  202. //
  203. this.tB_X.Location = new System.Drawing.Point(29, 18);
  204. this.tB_X.Name = "tB_X";
  205. this.tB_X.Size = new System.Drawing.Size(100, 21);
  206. this.tB_X.TabIndex = 16;
  207. this.tB_X.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  208. //
  209. // label6
  210. //
  211. this.label6.AutoSize = true;
  212. this.label6.Location = new System.Drawing.Point(10, 23);
  213. this.label6.Name = "label6";
  214. this.label6.Size = new System.Drawing.Size(11, 12);
  215. this.label6.TabIndex = 15;
  216. this.label6.Text = "X";
  217. //
  218. // tB_Y
  219. //
  220. this.tB_Y.Location = new System.Drawing.Point(29, 61);
  221. this.tB_Y.Name = "tB_Y";
  222. this.tB_Y.Size = new System.Drawing.Size(100, 21);
  223. this.tB_Y.TabIndex = 19;
  224. this.tB_Y.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  225. //
  226. // label7
  227. //
  228. this.label7.AutoSize = true;
  229. this.label7.Location = new System.Drawing.Point(10, 64);
  230. this.label7.Name = "label7";
  231. this.label7.Size = new System.Drawing.Size(11, 12);
  232. this.label7.TabIndex = 18;
  233. this.label7.Text = "Y";
  234. //
  235. // tB_R
  236. //
  237. this.tB_R.Location = new System.Drawing.Point(29, 100);
  238. this.tB_R.Name = "tB_R";
  239. this.tB_R.Size = new System.Drawing.Size(100, 21);
  240. this.tB_R.TabIndex = 22;
  241. this.tB_R.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  242. //
  243. // label8
  244. //
  245. this.label8.AutoSize = true;
  246. this.label8.Location = new System.Drawing.Point(10, 105);
  247. this.label8.Name = "label8";
  248. this.label8.Size = new System.Drawing.Size(11, 12);
  249. this.label8.TabIndex = 21;
  250. this.label8.Text = "R";
  251. //
  252. // panel1
  253. //
  254. this.panel1.Controls.Add(this.btn_setXYR);
  255. this.panel1.Controls.Add(this.tB_R);
  256. this.panel1.Controls.Add(this.label6);
  257. this.panel1.Controls.Add(this.label8);
  258. this.panel1.Controls.Add(this.tB_X);
  259. this.panel1.Controls.Add(this.tB_Y);
  260. this.panel1.Controls.Add(this.label7);
  261. this.panel1.Location = new System.Drawing.Point(312, 8);
  262. this.panel1.Name = "panel1";
  263. this.panel1.Size = new System.Drawing.Size(239, 134);
  264. this.panel1.TabIndex = 23;
  265. //
  266. // panel2
  267. //
  268. this.panel2.Controls.Add(this.label1);
  269. this.panel2.Controls.Add(this.tB_distance);
  270. this.panel2.Controls.Add(this.btn_setMagnification);
  271. this.panel2.Controls.Add(this.btn_distance);
  272. this.panel2.Controls.Add(this.tB_Magnification);
  273. this.panel2.Controls.Add(this.label2);
  274. this.panel2.Controls.Add(this.label5);
  275. this.panel2.Controls.Add(this.tB_Brightness);
  276. this.panel2.Controls.Add(this.btn_setAcceleratingVoltage);
  277. this.panel2.Controls.Add(this.btn_setbrightness);
  278. this.panel2.Controls.Add(this.tB_AcceleratingVoltage);
  279. this.panel2.Controls.Add(this.label3);
  280. this.panel2.Controls.Add(this.label4);
  281. this.panel2.Controls.Add(this.tB_Contrast);
  282. this.panel2.Controls.Add(this.btn_setContrast);
  283. this.panel2.Location = new System.Drawing.Point(11, 8);
  284. this.panel2.Name = "panel2";
  285. this.panel2.Size = new System.Drawing.Size(285, 205);
  286. this.panel2.TabIndex = 24;
  287. //
  288. // SetSEMDATAMParameterWindows
  289. //
  290. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  291. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  292. this.ClientSize = new System.Drawing.Size(563, 221);
  293. this.Controls.Add(this.panel2);
  294. this.Controls.Add(this.panel1);
  295. this.MaximizeBox = false;
  296. this.MaximumSize = new System.Drawing.Size(579, 260);
  297. this.MinimizeBox = false;
  298. this.MinimumSize = new System.Drawing.Size(579, 260);
  299. this.Name = "SetSEMDATAMParameterWindows";
  300. this.ShowIcon = false;
  301. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  302. this.Text = "SetSEMDATAMParameter";
  303. this.Load += new System.EventHandler(this.SetSEMDATAMParameter_Load);
  304. this.panel1.ResumeLayout(false);
  305. this.panel1.PerformLayout();
  306. this.panel2.ResumeLayout(false);
  307. this.panel2.PerformLayout();
  308. this.ResumeLayout(false);
  309. }
  310. #endregion
  311. private System.Windows.Forms.Label label1;
  312. private System.Windows.Forms.TextBox tB_distance;
  313. private System.Windows.Forms.Button btn_distance;
  314. private System.Windows.Forms.Button btn_setbrightness;
  315. private System.Windows.Forms.TextBox tB_Brightness;
  316. private System.Windows.Forms.Label label2;
  317. private System.Windows.Forms.Button btn_setContrast;
  318. private System.Windows.Forms.TextBox tB_Contrast;
  319. private System.Windows.Forms.Label label3;
  320. private System.Windows.Forms.Button btn_setAcceleratingVoltage;
  321. private System.Windows.Forms.TextBox tB_AcceleratingVoltage;
  322. private System.Windows.Forms.Label label4;
  323. private System.Windows.Forms.Button btn_setMagnification;
  324. private System.Windows.Forms.TextBox tB_Magnification;
  325. private System.Windows.Forms.Label label5;
  326. private System.Windows.Forms.Button btn_setXYR;
  327. private System.Windows.Forms.TextBox tB_X;
  328. private System.Windows.Forms.Label label6;
  329. private System.Windows.Forms.TextBox tB_Y;
  330. private System.Windows.Forms.Label label7;
  331. private System.Windows.Forms.TextBox tB_R;
  332. private System.Windows.Forms.Label label8;
  333. private System.Windows.Forms.Panel panel1;
  334. private System.Windows.Forms.Panel panel2;
  335. }
  336. }