ControllerSettingForm.Designer.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. namespace OTSSysMgrApp
  2. {
  3. partial class ControllerSettingForm
  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(ControllerSettingForm));
  29. this.tabSetting = new System.Windows.Forms.TabControl();
  30. this.tabImage = new System.Windows.Forms.TabPage();
  31. this.ddlDwellTime = new System.Windows.Forms.ComboBox();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.pbImage = new System.Windows.Forms.PictureBox();
  35. this.btnClear = new System.Windows.Forms.Button();
  36. this.btnSaveImage = new System.Windows.Forms.Button();
  37. this.btnDisplay = new System.Windows.Forms.Button();
  38. this.tbRHeight = new System.Windows.Forms.TextBox();
  39. this.tbRWidth = new System.Windows.Forms.TextBox();
  40. this.lblDwellTime = new System.Windows.Forms.Label();
  41. this.lblResolution = new System.Windows.Forms.Label();
  42. this.tabXRay = new System.Windows.Forms.TabPage();
  43. this.groupBox1 = new System.Windows.Forms.GroupBox();
  44. this.btnClearData = new System.Windows.Forms.Button();
  45. this.btnAreaRay = new System.Windows.Forms.Button();
  46. this.btnPointXRay = new System.Windows.Forms.Button();
  47. this.btnEanalysis = new System.Windows.Forms.Button();
  48. this.btnDisplayXRay = new System.Windows.Forms.Button();
  49. this.lbXrayCount = new System.Windows.Forms.Label();
  50. this.btnCollectionTime = new System.Windows.Forms.Button();
  51. this.tbCollectionTime = new System.Windows.Forms.TextBox();
  52. this.label2 = new System.Windows.Forms.Label();
  53. this.lblCollectionTime = new System.Windows.Forms.Label();
  54. this.tabSetting.SuspendLayout();
  55. this.tabImage.SuspendLayout();
  56. this.groupBox2.SuspendLayout();
  57. this.panel1.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.pbImage)).BeginInit();
  59. this.tabXRay.SuspendLayout();
  60. this.SuspendLayout();
  61. //
  62. // tabSetting
  63. //
  64. this.tabSetting.Controls.Add(this.tabImage);
  65. this.tabSetting.Controls.Add(this.tabXRay);
  66. this.tabSetting.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.tabSetting.Location = new System.Drawing.Point(0, 0);
  68. this.tabSetting.Margin = new System.Windows.Forms.Padding(2);
  69. this.tabSetting.Name = "tabSetting";
  70. this.tabSetting.SelectedIndex = 0;
  71. this.tabSetting.Size = new System.Drawing.Size(959, 834);
  72. this.tabSetting.TabIndex = 2;
  73. //
  74. // tabImage
  75. //
  76. this.tabImage.Controls.Add(this.ddlDwellTime);
  77. this.tabImage.Controls.Add(this.groupBox2);
  78. this.tabImage.Controls.Add(this.btnSaveImage);
  79. this.tabImage.Controls.Add(this.btnDisplay);
  80. this.tabImage.Controls.Add(this.tbRHeight);
  81. this.tabImage.Controls.Add(this.tbRWidth);
  82. this.tabImage.Controls.Add(this.lblDwellTime);
  83. this.tabImage.Controls.Add(this.lblResolution);
  84. this.tabImage.Location = new System.Drawing.Point(4, 22);
  85. this.tabImage.Margin = new System.Windows.Forms.Padding(2);
  86. this.tabImage.Name = "tabImage";
  87. this.tabImage.Padding = new System.Windows.Forms.Padding(2);
  88. this.tabImage.Size = new System.Drawing.Size(951, 808);
  89. this.tabImage.TabIndex = 1;
  90. this.tabImage.Text = "BSE测试";
  91. this.tabImage.UseVisualStyleBackColor = true;
  92. //
  93. // ddlDwellTime
  94. //
  95. this.ddlDwellTime.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  96. this.ddlDwellTime.FormattingEnabled = true;
  97. this.ddlDwellTime.Items.AddRange(new object[] {
  98. "Low",
  99. "Medium",
  100. "High"});
  101. this.ddlDwellTime.Location = new System.Drawing.Point(266, 17);
  102. this.ddlDwellTime.Margin = new System.Windows.Forms.Padding(2);
  103. this.ddlDwellTime.Name = "ddlDwellTime";
  104. this.ddlDwellTime.Size = new System.Drawing.Size(82, 21);
  105. this.ddlDwellTime.TabIndex = 0;
  106. //
  107. // groupBox2
  108. //
  109. this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  110. | System.Windows.Forms.AnchorStyles.Left)
  111. | System.Windows.Forms.AnchorStyles.Right)));
  112. this.groupBox2.BackColor = System.Drawing.Color.White;
  113. this.groupBox2.Controls.Add(this.panel1);
  114. this.groupBox2.Controls.Add(this.btnClear);
  115. this.groupBox2.Location = new System.Drawing.Point(6, 49);
  116. this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
  117. this.groupBox2.Name = "groupBox2";
  118. this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
  119. this.groupBox2.Size = new System.Drawing.Size(938, 750);
  120. this.groupBox2.TabIndex = 13;
  121. this.groupBox2.TabStop = false;
  122. this.groupBox2.Text = "图像显示";
  123. //
  124. // panel1
  125. //
  126. this.panel1.AutoScroll = true;
  127. this.panel1.Controls.Add(this.pbImage);
  128. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  129. this.panel1.Location = new System.Drawing.Point(2, 15);
  130. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  131. this.panel1.Name = "panel1";
  132. this.panel1.Size = new System.Drawing.Size(934, 733);
  133. this.panel1.TabIndex = 2;
  134. //
  135. // pbImage
  136. //
  137. this.pbImage.BackColor = System.Drawing.Color.White;
  138. this.pbImage.Dock = System.Windows.Forms.DockStyle.Fill;
  139. this.pbImage.Location = new System.Drawing.Point(0, 0);
  140. this.pbImage.Margin = new System.Windows.Forms.Padding(2);
  141. this.pbImage.Name = "pbImage";
  142. this.pbImage.Size = new System.Drawing.Size(934, 733);
  143. this.pbImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  144. this.pbImage.TabIndex = 0;
  145. this.pbImage.TabStop = false;
  146. //
  147. // btnClear
  148. //
  149. this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  150. this.btnClear.Location = new System.Drawing.Point(866, 83);
  151. this.btnClear.Margin = new System.Windows.Forms.Padding(2);
  152. this.btnClear.Name = "btnClear";
  153. this.btnClear.Size = new System.Drawing.Size(67, 54);
  154. this.btnClear.TabIndex = 1;
  155. this.btnClear.Text = "Clear";
  156. this.btnClear.UseVisualStyleBackColor = true;
  157. this.btnClear.Visible = false;
  158. this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
  159. //
  160. // btnSaveImage
  161. //
  162. this.btnSaveImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  163. this.btnSaveImage.Location = new System.Drawing.Point(387, 9);
  164. this.btnSaveImage.Margin = new System.Windows.Forms.Padding(2);
  165. this.btnSaveImage.Name = "btnSaveImage";
  166. this.btnSaveImage.Size = new System.Drawing.Size(67, 36);
  167. this.btnSaveImage.TabIndex = 4;
  168. this.btnSaveImage.Text = "保存图片";
  169. this.btnSaveImage.UseVisualStyleBackColor = true;
  170. this.btnSaveImage.Visible = false;
  171. this.btnSaveImage.Click += new System.EventHandler(this.btnSaveImage_Click);
  172. //
  173. // btnDisplay
  174. //
  175. this.btnDisplay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  176. this.btnDisplay.Location = new System.Drawing.Point(593, 9);
  177. this.btnDisplay.Margin = new System.Windows.Forms.Padding(2);
  178. this.btnDisplay.Name = "btnDisplay";
  179. this.btnDisplay.Size = new System.Drawing.Size(133, 36);
  180. this.btnDisplay.TabIndex = 5;
  181. this.btnDisplay.Text = "图像采集";
  182. this.btnDisplay.UseVisualStyleBackColor = true;
  183. this.btnDisplay.Click += new System.EventHandler(this.btnDisplay_Click);
  184. //
  185. // tbRHeight
  186. //
  187. this.tbRHeight.Location = new System.Drawing.Point(119, 16);
  188. this.tbRHeight.Margin = new System.Windows.Forms.Padding(2);
  189. this.tbRHeight.Name = "tbRHeight";
  190. this.tbRHeight.Size = new System.Drawing.Size(48, 20);
  191. this.tbRHeight.TabIndex = 2;
  192. this.tbRHeight.Text = "1024";
  193. //
  194. // tbRWidth
  195. //
  196. this.tbRWidth.Location = new System.Drawing.Point(66, 16);
  197. this.tbRWidth.Margin = new System.Windows.Forms.Padding(2);
  198. this.tbRWidth.Name = "tbRWidth";
  199. this.tbRWidth.Size = new System.Drawing.Size(48, 20);
  200. this.tbRWidth.TabIndex = 1;
  201. this.tbRWidth.Text = "1536";
  202. //
  203. // lblDwellTime
  204. //
  205. this.lblDwellTime.AutoSize = true;
  206. this.lblDwellTime.Location = new System.Drawing.Point(189, 21);
  207. this.lblDwellTime.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  208. this.lblDwellTime.Name = "lblDwellTime";
  209. this.lblDwellTime.Size = new System.Drawing.Size(55, 13);
  210. this.lblDwellTime.TabIndex = 10;
  211. this.lblDwellTime.Text = "采集时间";
  212. //
  213. // lblResolution
  214. //
  215. this.lblResolution.AutoSize = true;
  216. this.lblResolution.Location = new System.Drawing.Point(-3, 21);
  217. this.lblResolution.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  218. this.lblResolution.Name = "lblResolution";
  219. this.lblResolution.Size = new System.Drawing.Size(43, 13);
  220. this.lblResolution.TabIndex = 10;
  221. this.lblResolution.Text = "分辨率";
  222. //
  223. // tabXRay
  224. //
  225. this.tabXRay.Controls.Add(this.groupBox1);
  226. this.tabXRay.Controls.Add(this.btnClearData);
  227. this.tabXRay.Controls.Add(this.btnAreaRay);
  228. this.tabXRay.Controls.Add(this.btnPointXRay);
  229. this.tabXRay.Controls.Add(this.btnEanalysis);
  230. this.tabXRay.Controls.Add(this.btnDisplayXRay);
  231. this.tabXRay.Controls.Add(this.lbXrayCount);
  232. this.tabXRay.Controls.Add(this.btnCollectionTime);
  233. this.tabXRay.Controls.Add(this.tbCollectionTime);
  234. this.tabXRay.Controls.Add(this.label2);
  235. this.tabXRay.Controls.Add(this.lblCollectionTime);
  236. this.tabXRay.Location = new System.Drawing.Point(4, 22);
  237. this.tabXRay.Margin = new System.Windows.Forms.Padding(2);
  238. this.tabXRay.Name = "tabXRay";
  239. this.tabXRay.Padding = new System.Windows.Forms.Padding(2);
  240. this.tabXRay.Size = new System.Drawing.Size(951, 808);
  241. this.tabXRay.TabIndex = 0;
  242. this.tabXRay.Text = "X-Ray测试";
  243. this.tabXRay.UseVisualStyleBackColor = true;
  244. //
  245. // groupBox1
  246. //
  247. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  248. | System.Windows.Forms.AnchorStyles.Left)
  249. | System.Windows.Forms.AnchorStyles.Right)));
  250. this.groupBox1.BackColor = System.Drawing.Color.White;
  251. this.groupBox1.Location = new System.Drawing.Point(6, 49);
  252. this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
  253. this.groupBox1.Name = "groupBox1";
  254. this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
  255. this.groupBox1.Size = new System.Drawing.Size(819, 720);
  256. this.groupBox1.TabIndex = 16;
  257. this.groupBox1.TabStop = false;
  258. this.groupBox1.Text = "图像显示";
  259. //
  260. // btnClearData
  261. //
  262. this.btnClearData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  263. this.btnClearData.Location = new System.Drawing.Point(702, 10);
  264. this.btnClearData.Margin = new System.Windows.Forms.Padding(2);
  265. this.btnClearData.Name = "btnClearData";
  266. this.btnClearData.Size = new System.Drawing.Size(49, 36);
  267. this.btnClearData.TabIndex = 5;
  268. this.btnClearData.Text = "清空";
  269. this.btnClearData.UseVisualStyleBackColor = true;
  270. this.btnClearData.Click += new System.EventHandler(this.btnClearData_Click);
  271. //
  272. // btnAreaRay
  273. //
  274. this.btnAreaRay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  275. this.btnAreaRay.Location = new System.Drawing.Point(425, 10);
  276. this.btnAreaRay.Margin = new System.Windows.Forms.Padding(2);
  277. this.btnAreaRay.Name = "btnAreaRay";
  278. this.btnAreaRay.Size = new System.Drawing.Size(67, 36);
  279. this.btnAreaRay.TabIndex = 4;
  280. this.btnAreaRay.Text = "面积采集";
  281. this.btnAreaRay.UseVisualStyleBackColor = true;
  282. this.btnAreaRay.Click += new System.EventHandler(this.btnAreaRay_Click);
  283. //
  284. // btnPointXRay
  285. //
  286. this.btnPointXRay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  287. this.btnPointXRay.Location = new System.Drawing.Point(595, 10);
  288. this.btnPointXRay.Margin = new System.Windows.Forms.Padding(2);
  289. this.btnPointXRay.Name = "btnPointXRay";
  290. this.btnPointXRay.Size = new System.Drawing.Size(89, 36);
  291. this.btnPointXRay.TabIndex = 3;
  292. this.btnPointXRay.Text = "多点采集";
  293. this.btnPointXRay.UseVisualStyleBackColor = true;
  294. this.btnPointXRay.Click += new System.EventHandler(this.btnPointXRay_Click);
  295. //
  296. // btnEanalysis
  297. //
  298. this.btnEanalysis.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  299. this.btnEanalysis.Location = new System.Drawing.Point(756, 10);
  300. this.btnEanalysis.Margin = new System.Windows.Forms.Padding(2);
  301. this.btnEanalysis.Name = "btnEanalysis";
  302. this.btnEanalysis.Size = new System.Drawing.Size(67, 36);
  303. this.btnEanalysis.TabIndex = 6;
  304. this.btnEanalysis.Text = "元素分析";
  305. this.btnEanalysis.UseVisualStyleBackColor = true;
  306. this.btnEanalysis.Click += new System.EventHandler(this.btnEanalysis_Click);
  307. //
  308. // btnDisplayXRay
  309. //
  310. this.btnDisplayXRay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  311. this.btnDisplayXRay.Location = new System.Drawing.Point(496, 10);
  312. this.btnDisplayXRay.Margin = new System.Windows.Forms.Padding(2);
  313. this.btnDisplayXRay.Name = "btnDisplayXRay";
  314. this.btnDisplayXRay.Size = new System.Drawing.Size(95, 36);
  315. this.btnDisplayXRay.TabIndex = 2;
  316. this.btnDisplayXRay.Text = "默认点采集";
  317. this.btnDisplayXRay.UseVisualStyleBackColor = true;
  318. this.btnDisplayXRay.Click += new System.EventHandler(this.btnDisplayXRay_Click);
  319. //
  320. // lbXrayCount
  321. //
  322. this.lbXrayCount.AutoSize = true;
  323. this.lbXrayCount.Location = new System.Drawing.Point(260, 21);
  324. this.lbXrayCount.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  325. this.lbXrayCount.Name = "lbXrayCount";
  326. this.lbXrayCount.Size = new System.Drawing.Size(58, 13);
  327. this.lbXrayCount.TabIndex = 13;
  328. this.lbXrayCount.Text = "DropCount";
  329. //
  330. // btnCollectionTime
  331. //
  332. this.btnCollectionTime.Enabled = false;
  333. this.btnCollectionTime.Location = new System.Drawing.Point(167, 16);
  334. this.btnCollectionTime.Margin = new System.Windows.Forms.Padding(2);
  335. this.btnCollectionTime.Name = "btnCollectionTime";
  336. this.btnCollectionTime.Size = new System.Drawing.Size(40, 23);
  337. this.btnCollectionTime.TabIndex = 8;
  338. this.btnCollectionTime.Text = "Test";
  339. this.btnCollectionTime.UseVisualStyleBackColor = true;
  340. this.btnCollectionTime.Visible = false;
  341. this.btnCollectionTime.Click += new System.EventHandler(this.btnCollectionTime_Click);
  342. //
  343. // tbCollectionTime
  344. //
  345. this.tbCollectionTime.Location = new System.Drawing.Point(76, 17);
  346. this.tbCollectionTime.Margin = new System.Windows.Forms.Padding(2);
  347. this.tbCollectionTime.Name = "tbCollectionTime";
  348. this.tbCollectionTime.Size = new System.Drawing.Size(63, 20);
  349. this.tbCollectionTime.TabIndex = 1;
  350. this.tbCollectionTime.Text = "120";
  351. //
  352. // label2
  353. //
  354. this.label2.AutoSize = true;
  355. this.label2.Location = new System.Drawing.Point(143, 21);
  356. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  357. this.label2.Name = "label2";
  358. this.label2.Size = new System.Drawing.Size(20, 13);
  359. this.label2.TabIndex = 0;
  360. this.label2.Text = "ms";
  361. //
  362. // lblCollectionTime
  363. //
  364. this.lblCollectionTime.AutoSize = true;
  365. this.lblCollectionTime.Location = new System.Drawing.Point(1, 21);
  366. this.lblCollectionTime.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  367. this.lblCollectionTime.Name = "lblCollectionTime";
  368. this.lblCollectionTime.Size = new System.Drawing.Size(55, 13);
  369. this.lblCollectionTime.TabIndex = 0;
  370. this.lblCollectionTime.Text = "采集时间";
  371. //
  372. // ControllerSettingForm
  373. //
  374. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  375. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  376. this.BackColor = System.Drawing.Color.White;
  377. this.ClientSize = new System.Drawing.Size(959, 834);
  378. this.Controls.Add(this.tabSetting);
  379. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  380. this.Margin = new System.Windows.Forms.Padding(2);
  381. this.MinimumSize = new System.Drawing.Size(639, 433);
  382. this.Name = "ControllerSettingForm";
  383. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  384. this.Text = "BSEAndXrayTest";
  385. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ControllerSettingForm_FormClosing);
  386. this.Load += new System.EventHandler(this.ControllerSettingForm_Load);
  387. this.tabSetting.ResumeLayout(false);
  388. this.tabImage.ResumeLayout(false);
  389. this.tabImage.PerformLayout();
  390. this.groupBox2.ResumeLayout(false);
  391. this.panel1.ResumeLayout(false);
  392. ((System.ComponentModel.ISupportInitialize)(this.pbImage)).EndInit();
  393. this.tabXRay.ResumeLayout(false);
  394. this.tabXRay.PerformLayout();
  395. this.ResumeLayout(false);
  396. }
  397. #endregion
  398. private System.Windows.Forms.TabControl tabSetting;
  399. private System.Windows.Forms.TabPage tabXRay;
  400. private System.Windows.Forms.Label lblCollectionTime;
  401. private System.Windows.Forms.TextBox tbCollectionTime;
  402. private System.Windows.Forms.Label label2;
  403. private System.Windows.Forms.Button btnCollectionTime;
  404. private System.Windows.Forms.Label lbXrayCount;
  405. private System.Windows.Forms.GroupBox groupBox1;
  406. private System.Windows.Forms.Button btnDisplayXRay;
  407. private System.Windows.Forms.TabPage tabImage;
  408. private System.Windows.Forms.GroupBox groupBox2;
  409. private System.Windows.Forms.Panel panel1;
  410. private System.Windows.Forms.PictureBox pbImage;
  411. private System.Windows.Forms.Button btnClear;
  412. private System.Windows.Forms.Button btnDisplay;
  413. private System.Windows.Forms.TextBox tbRHeight;
  414. private System.Windows.Forms.TextBox tbRWidth;
  415. private System.Windows.Forms.Label lblDwellTime;
  416. private System.Windows.Forms.Label lblResolution;
  417. private System.Windows.Forms.Button btnSaveImage;
  418. private System.Windows.Forms.ComboBox ddlDwellTime;
  419. private System.Windows.Forms.Button btnAreaRay;
  420. private System.Windows.Forms.Button btnPointXRay;
  421. private System.Windows.Forms.Button btnClearData;
  422. private System.Windows.Forms.Button btnEanalysis;
  423. private Control_XRayTable control_XRayTable1;
  424. }
  425. }