DetectorControlPanel.Designer.cs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. namespace OINA.Extender.Testharness
  2. {
  3. partial class DetectorControlPanel
  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.gbSlideControl = new System.Windows.Forms.GroupBox();
  29. this.lblSlidePosition = new System.Windows.Forms.Label();
  30. this.btnMoveOut = new System.Windows.Forms.Button();
  31. this.textActivityStatus = new System.Windows.Forms.Label();
  32. this.btnMoveStop = new System.Windows.Forms.Button();
  33. this.textPositionStatus = new System.Windows.Forms.Label();
  34. this.btnMoveIn = new System.Windows.Forms.Button();
  35. this.lblSlideActivity = new System.Windows.Forms.Label();
  36. this.gbDetectorStatus = new System.Windows.Forms.GroupBox();
  37. this.tbDetectorDescription = new System.Windows.Forms.TextBox();
  38. this.lblDetectorDescription = new System.Windows.Forms.Label();
  39. this.textDetectorIsReady = new System.Windows.Forms.Label();
  40. this.lblDetectorIsReady = new System.Windows.Forms.Label();
  41. this.gbShutterControl = new System.Windows.Forms.GroupBox();
  42. this.btnClose = new System.Windows.Forms.Button();
  43. this.btnOpen = new System.Windows.Forms.Button();
  44. this.lblShutterStatus = new System.Windows.Forms.Label();
  45. this.textShutterStatus = new System.Windows.Forms.Label();
  46. this.gbOverloadControl = new System.Windows.Forms.GroupBox();
  47. this.btnToggleOverloadProtection = new System.Windows.Forms.Button();
  48. this.lblThresholdValue = new System.Windows.Forms.Label();
  49. this.lblDelayValue = new System.Windows.Forms.Label();
  50. this.tbDelay = new System.Windows.Forms.TextBox();
  51. this.tbThreshold = new System.Windows.Forms.TextBox();
  52. this.btuSetOverloadValue = new System.Windows.Forms.Button();
  53. this.textOverloadProtection = new System.Windows.Forms.Label();
  54. this.lblOverloadProtection = new System.Windows.Forms.Label();
  55. this.textInterlockStatus = new System.Windows.Forms.Label();
  56. this.lblInterlockStatus = new System.Windows.Forms.Label();
  57. this.textThreshold = new System.Windows.Forms.Label();
  58. this.textDelay = new System.Windows.Forms.Label();
  59. this.lblOverloadThreshold = new System.Windows.Forms.Label();
  60. this.lblOverloadDelay = new System.Windows.Forms.Label();
  61. this.gbThermalControl = new System.Windows.Forms.GroupBox();
  62. this.lblThermalStatus = new System.Windows.Forms.Label();
  63. this.textOperatingStatus = new System.Windows.Forms.Label();
  64. this.btnStandby = new System.Windows.Forms.Button();
  65. this.btnOperate = new System.Windows.Forms.Button();
  66. this.gbSlideControl.SuspendLayout();
  67. this.gbDetectorStatus.SuspendLayout();
  68. this.gbShutterControl.SuspendLayout();
  69. this.gbOverloadControl.SuspendLayout();
  70. this.gbThermalControl.SuspendLayout();
  71. this.SuspendLayout();
  72. //
  73. // gbSlideControl
  74. //
  75. this.gbSlideControl.Controls.Add(this.lblSlidePosition);
  76. this.gbSlideControl.Controls.Add(this.btnMoveOut);
  77. this.gbSlideControl.Controls.Add(this.textActivityStatus);
  78. this.gbSlideControl.Controls.Add(this.btnMoveStop);
  79. this.gbSlideControl.Controls.Add(this.textPositionStatus);
  80. this.gbSlideControl.Controls.Add(this.btnMoveIn);
  81. this.gbSlideControl.Controls.Add(this.lblSlideActivity);
  82. this.gbSlideControl.Location = new System.Drawing.Point(259, 12);
  83. this.gbSlideControl.Name = "gbSlideControl";
  84. this.gbSlideControl.Size = new System.Drawing.Size(290, 112);
  85. this.gbSlideControl.TabIndex = 16;
  86. this.gbSlideControl.TabStop = false;
  87. this.gbSlideControl.Text = "Slide Control";
  88. //
  89. // lblSlidePosition
  90. //
  91. this.lblSlidePosition.AutoSize = true;
  92. this.lblSlidePosition.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  93. this.lblSlidePosition.Location = new System.Drawing.Point(15, 28);
  94. this.lblSlidePosition.Name = "lblSlidePosition";
  95. this.lblSlidePosition.Size = new System.Drawing.Size(73, 13);
  96. this.lblSlidePosition.TabIndex = 0;
  97. this.lblSlidePosition.Text = "Slide Position:";
  98. //
  99. // btnMoveOut
  100. //
  101. this.btnMoveOut.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  102. this.btnMoveOut.Location = new System.Drawing.Point(105, 74);
  103. this.btnMoveOut.Name = "btnMoveOut";
  104. this.btnMoveOut.Size = new System.Drawing.Size(75, 23);
  105. this.btnMoveOut.TabIndex = 4;
  106. this.btnMoveOut.Text = "Out";
  107. this.btnMoveOut.UseVisualStyleBackColor = true;
  108. this.btnMoveOut.Click += new System.EventHandler(this.MoveOutButton_Click);
  109. //
  110. // textActivityStatus
  111. //
  112. this.textActivityStatus.AutoSize = true;
  113. this.textActivityStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  114. this.textActivityStatus.Location = new System.Drawing.Point(102, 45);
  115. this.textActivityStatus.Name = "textActivityStatus";
  116. this.textActivityStatus.Size = new System.Drawing.Size(67, 13);
  117. this.textActivityStatus.TabIndex = 10;
  118. this.textActivityStatus.Text = "Slide Activity";
  119. //
  120. // btnMoveStop
  121. //
  122. this.btnMoveStop.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  123. this.btnMoveStop.Location = new System.Drawing.Point(195, 74);
  124. this.btnMoveStop.Name = "btnMoveStop";
  125. this.btnMoveStop.Size = new System.Drawing.Size(75, 23);
  126. this.btnMoveStop.TabIndex = 3;
  127. this.btnMoveStop.Text = "Stop";
  128. this.btnMoveStop.UseVisualStyleBackColor = true;
  129. this.btnMoveStop.Click += new System.EventHandler(this.StopButton_Click);
  130. //
  131. // textPositionStatus
  132. //
  133. this.textPositionStatus.AutoSize = true;
  134. this.textPositionStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  135. this.textPositionStatus.Location = new System.Drawing.Point(102, 28);
  136. this.textPositionStatus.Name = "textPositionStatus";
  137. this.textPositionStatus.Size = new System.Drawing.Size(70, 13);
  138. this.textPositionStatus.TabIndex = 1;
  139. this.textPositionStatus.Text = "Slide Position";
  140. //
  141. // btnMoveIn
  142. //
  143. this.btnMoveIn.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  144. this.btnMoveIn.Location = new System.Drawing.Point(13, 74);
  145. this.btnMoveIn.Name = "btnMoveIn";
  146. this.btnMoveIn.Size = new System.Drawing.Size(75, 23);
  147. this.btnMoveIn.TabIndex = 2;
  148. this.btnMoveIn.Text = "In";
  149. this.btnMoveIn.UseVisualStyleBackColor = true;
  150. this.btnMoveIn.Click += new System.EventHandler(this.MoveInButton_Click);
  151. //
  152. // lblSlideActivity
  153. //
  154. this.lblSlideActivity.AutoSize = true;
  155. this.lblSlideActivity.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  156. this.lblSlideActivity.Location = new System.Drawing.Point(18, 45);
  157. this.lblSlideActivity.Name = "lblSlideActivity";
  158. this.lblSlideActivity.Size = new System.Drawing.Size(70, 13);
  159. this.lblSlideActivity.TabIndex = 9;
  160. this.lblSlideActivity.Text = "Slide Activity:";
  161. //
  162. // gbDetectorStatus
  163. //
  164. this.gbDetectorStatus.Controls.Add(this.tbDetectorDescription);
  165. this.gbDetectorStatus.Controls.Add(this.lblDetectorDescription);
  166. this.gbDetectorStatus.Controls.Add(this.textDetectorIsReady);
  167. this.gbDetectorStatus.Controls.Add(this.lblDetectorIsReady);
  168. this.gbDetectorStatus.Location = new System.Drawing.Point(12, 12);
  169. this.gbDetectorStatus.Name = "gbDetectorStatus";
  170. this.gbDetectorStatus.Size = new System.Drawing.Size(241, 150);
  171. this.gbDetectorStatus.TabIndex = 20;
  172. this.gbDetectorStatus.TabStop = false;
  173. this.gbDetectorStatus.Text = "Detector Status";
  174. //
  175. // tbDetectorDescription
  176. //
  177. this.tbDetectorDescription.Location = new System.Drawing.Point(10, 54);
  178. this.tbDetectorDescription.Multiline = true;
  179. this.tbDetectorDescription.Name = "tbDetectorDescription";
  180. this.tbDetectorDescription.Size = new System.Drawing.Size(225, 90);
  181. this.tbDetectorDescription.TabIndex = 3;
  182. //
  183. // lblDetectorDescription
  184. //
  185. this.lblDetectorDescription.AutoSize = true;
  186. this.lblDetectorDescription.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  187. this.lblDetectorDescription.Location = new System.Drawing.Point(7, 38);
  188. this.lblDetectorDescription.Name = "lblDetectorDescription";
  189. this.lblDetectorDescription.Size = new System.Drawing.Size(107, 13);
  190. this.lblDetectorDescription.TabIndex = 2;
  191. this.lblDetectorDescription.Text = "Detector Description:";
  192. //
  193. // textDetectorIsReady
  194. //
  195. this.textDetectorIsReady.AutoSize = true;
  196. this.textDetectorIsReady.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  197. this.textDetectorIsReady.Location = new System.Drawing.Point(113, 19);
  198. this.textDetectorIsReady.Name = "textDetectorIsReady";
  199. this.textDetectorIsReady.Size = new System.Drawing.Size(99, 13);
  200. this.textDetectorIsReady.TabIndex = 1;
  201. this.textDetectorIsReady.Text = "Detector Is Ready?";
  202. //
  203. // lblDetectorIsReady
  204. //
  205. this.lblDetectorIsReady.AutoSize = true;
  206. this.lblDetectorIsReady.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  207. this.lblDetectorIsReady.Location = new System.Drawing.Point(7, 20);
  208. this.lblDetectorIsReady.Name = "lblDetectorIsReady";
  209. this.lblDetectorIsReady.Size = new System.Drawing.Size(96, 13);
  210. this.lblDetectorIsReady.TabIndex = 0;
  211. this.lblDetectorIsReady.Text = "Detector Is Ready:";
  212. //
  213. // gbShutterControl
  214. //
  215. this.gbShutterControl.Controls.Add(this.btnClose);
  216. this.gbShutterControl.Controls.Add(this.btnOpen);
  217. this.gbShutterControl.Controls.Add(this.lblShutterStatus);
  218. this.gbShutterControl.Controls.Add(this.textShutterStatus);
  219. this.gbShutterControl.Location = new System.Drawing.Point(12, 266);
  220. this.gbShutterControl.Name = "gbShutterControl";
  221. this.gbShutterControl.Size = new System.Drawing.Size(241, 91);
  222. this.gbShutterControl.TabIndex = 19;
  223. this.gbShutterControl.TabStop = false;
  224. this.gbShutterControl.Text = "Shutter Control";
  225. //
  226. // btnClose
  227. //
  228. this.btnClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  229. this.btnClose.Location = new System.Drawing.Point(113, 55);
  230. this.btnClose.Name = "btnClose";
  231. this.btnClose.Size = new System.Drawing.Size(75, 23);
  232. this.btnClose.TabIndex = 2;
  233. this.btnClose.Text = "Close";
  234. this.btnClose.UseVisualStyleBackColor = true;
  235. this.btnClose.Click += new System.EventHandler(this.CloseButton_Click);
  236. //
  237. // btnOpen
  238. //
  239. this.btnOpen.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  240. this.btnOpen.Location = new System.Drawing.Point(18, 55);
  241. this.btnOpen.Name = "btnOpen";
  242. this.btnOpen.Size = new System.Drawing.Size(75, 23);
  243. this.btnOpen.TabIndex = 1;
  244. this.btnOpen.Text = "Open";
  245. this.btnOpen.UseVisualStyleBackColor = true;
  246. this.btnOpen.Click += new System.EventHandler(this.OpenButton_Click);
  247. //
  248. // lblShutterStatus
  249. //
  250. this.lblShutterStatus.AutoSize = true;
  251. this.lblShutterStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  252. this.lblShutterStatus.Location = new System.Drawing.Point(19, 28);
  253. this.lblShutterStatus.Name = "lblShutterStatus";
  254. this.lblShutterStatus.Size = new System.Drawing.Size(77, 13);
  255. this.lblShutterStatus.TabIndex = 0;
  256. this.lblShutterStatus.Text = "Shutter Status:";
  257. //
  258. // textShutterStatus
  259. //
  260. this.textShutterStatus.AutoSize = true;
  261. this.textShutterStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  262. this.textShutterStatus.Location = new System.Drawing.Point(110, 28);
  263. this.textShutterStatus.Name = "textShutterStatus";
  264. this.textShutterStatus.Size = new System.Drawing.Size(74, 13);
  265. this.textShutterStatus.TabIndex = 0;
  266. this.textShutterStatus.Text = "Shutter Status";
  267. //
  268. // gbOverloadControl
  269. //
  270. this.gbOverloadControl.Controls.Add(this.btnToggleOverloadProtection);
  271. this.gbOverloadControl.Controls.Add(this.lblThresholdValue);
  272. this.gbOverloadControl.Controls.Add(this.lblDelayValue);
  273. this.gbOverloadControl.Controls.Add(this.tbDelay);
  274. this.gbOverloadControl.Controls.Add(this.tbThreshold);
  275. this.gbOverloadControl.Controls.Add(this.btuSetOverloadValue);
  276. this.gbOverloadControl.Controls.Add(this.textOverloadProtection);
  277. this.gbOverloadControl.Controls.Add(this.lblOverloadProtection);
  278. this.gbOverloadControl.Controls.Add(this.textInterlockStatus);
  279. this.gbOverloadControl.Controls.Add(this.lblInterlockStatus);
  280. this.gbOverloadControl.Controls.Add(this.textThreshold);
  281. this.gbOverloadControl.Controls.Add(this.textDelay);
  282. this.gbOverloadControl.Controls.Add(this.lblOverloadThreshold);
  283. this.gbOverloadControl.Controls.Add(this.lblOverloadDelay);
  284. this.gbOverloadControl.Location = new System.Drawing.Point(259, 130);
  285. this.gbOverloadControl.Name = "gbOverloadControl";
  286. this.gbOverloadControl.Size = new System.Drawing.Size(290, 227);
  287. this.gbOverloadControl.TabIndex = 18;
  288. this.gbOverloadControl.TabStop = false;
  289. this.gbOverloadControl.Text = "Overload Control";
  290. //
  291. // btnToggleOverloadProtection
  292. //
  293. this.btnToggleOverloadProtection.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  294. this.btnToggleOverloadProtection.Location = new System.Drawing.Point(12, 113);
  295. this.btnToggleOverloadProtection.Name = "btnToggleOverloadProtection";
  296. this.btnToggleOverloadProtection.Size = new System.Drawing.Size(258, 23);
  297. this.btnToggleOverloadProtection.TabIndex = 15;
  298. this.btnToggleOverloadProtection.Text = "Toggle Overload Protection";
  299. this.btnToggleOverloadProtection.UseVisualStyleBackColor = true;
  300. this.btnToggleOverloadProtection.Click += new System.EventHandler(this.ToggleOverloadProtectionButton_Click);
  301. //
  302. // lblThresholdValue
  303. //
  304. this.lblThresholdValue.AutoSize = true;
  305. this.lblThresholdValue.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  306. this.lblThresholdValue.Location = new System.Drawing.Point(12, 171);
  307. this.lblThresholdValue.Name = "lblThresholdValue";
  308. this.lblThresholdValue.Size = new System.Drawing.Size(87, 13);
  309. this.lblThresholdValue.TabIndex = 14;
  310. this.lblThresholdValue.Text = "Threshold Value:";
  311. //
  312. // lblDelayValue
  313. //
  314. this.lblDelayValue.AutoSize = true;
  315. this.lblDelayValue.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  316. this.lblDelayValue.Location = new System.Drawing.Point(12, 145);
  317. this.lblDelayValue.Name = "lblDelayValue";
  318. this.lblDelayValue.Size = new System.Drawing.Size(67, 13);
  319. this.lblDelayValue.TabIndex = 13;
  320. this.lblDelayValue.Text = "Delay Value:";
  321. //
  322. // tbDelay
  323. //
  324. this.tbDelay.Location = new System.Drawing.Point(105, 142);
  325. this.tbDelay.Name = "tbDelay";
  326. this.tbDelay.Size = new System.Drawing.Size(165, 20);
  327. this.tbDelay.TabIndex = 12;
  328. //
  329. // tbThreshold
  330. //
  331. this.tbThreshold.Location = new System.Drawing.Point(105, 168);
  332. this.tbThreshold.Name = "tbThreshold";
  333. this.tbThreshold.Size = new System.Drawing.Size(165, 20);
  334. this.tbThreshold.TabIndex = 11;
  335. //
  336. // btuSetOverloadValue
  337. //
  338. this.btuSetOverloadValue.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  339. this.btuSetOverloadValue.Location = new System.Drawing.Point(12, 196);
  340. this.btuSetOverloadValue.Name = "btuSetOverloadValue";
  341. this.btuSetOverloadValue.Size = new System.Drawing.Size(258, 23);
  342. this.btuSetOverloadValue.TabIndex = 9;
  343. this.btuSetOverloadValue.Text = "Set Overload Value";
  344. this.btuSetOverloadValue.UseVisualStyleBackColor = true;
  345. this.btuSetOverloadValue.Click += new System.EventHandler(this.SetOverloadValueButton_Click);
  346. //
  347. // textOverloadProtection
  348. //
  349. this.textOverloadProtection.AutoSize = true;
  350. this.textOverloadProtection.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  351. this.textOverloadProtection.Location = new System.Drawing.Point(121, 27);
  352. this.textOverloadProtection.Name = "textOverloadProtection";
  353. this.textOverloadProtection.Size = new System.Drawing.Size(101, 13);
  354. this.textOverloadProtection.TabIndex = 8;
  355. this.textOverloadProtection.Text = "Overload Protection";
  356. //
  357. // lblOverloadProtection
  358. //
  359. this.lblOverloadProtection.AutoSize = true;
  360. this.lblOverloadProtection.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  361. this.lblOverloadProtection.Location = new System.Drawing.Point(10, 27);
  362. this.lblOverloadProtection.Name = "lblOverloadProtection";
  363. this.lblOverloadProtection.Size = new System.Drawing.Size(104, 13);
  364. this.lblOverloadProtection.TabIndex = 7;
  365. this.lblOverloadProtection.Text = "Overload Protection:";
  366. //
  367. // textInterlockStatus
  368. //
  369. this.textInterlockStatus.AutoSize = true;
  370. this.textInterlockStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  371. this.textInterlockStatus.Location = new System.Drawing.Point(121, 79);
  372. this.textInterlockStatus.Name = "textInterlockStatus";
  373. this.textInterlockStatus.Size = new System.Drawing.Size(81, 13);
  374. this.textInterlockStatus.TabIndex = 6;
  375. this.textInterlockStatus.Text = "Interlock Status";
  376. //
  377. // lblInterlockStatus
  378. //
  379. this.lblInterlockStatus.AutoSize = true;
  380. this.lblInterlockStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  381. this.lblInterlockStatus.Location = new System.Drawing.Point(10, 79);
  382. this.lblInterlockStatus.Name = "lblInterlockStatus";
  383. this.lblInterlockStatus.Size = new System.Drawing.Size(98, 13);
  384. this.lblInterlockStatus.TabIndex = 5;
  385. this.lblInterlockStatus.Text = "Low Mag Interlock:";
  386. //
  387. // textThreshold
  388. //
  389. this.textThreshold.AutoSize = true;
  390. this.textThreshold.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  391. this.textThreshold.Location = new System.Drawing.Point(121, 62);
  392. this.textThreshold.Name = "textThreshold";
  393. this.textThreshold.Size = new System.Drawing.Size(84, 13);
  394. this.textThreshold.TabIndex = 4;
  395. this.textThreshold.Text = "Threshold Value";
  396. //
  397. // textDelay
  398. //
  399. this.textDelay.AutoSize = true;
  400. this.textDelay.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  401. this.textDelay.Location = new System.Drawing.Point(121, 45);
  402. this.textDelay.Name = "textDelay";
  403. this.textDelay.Size = new System.Drawing.Size(64, 13);
  404. this.textDelay.TabIndex = 3;
  405. this.textDelay.Text = "Delay Value";
  406. //
  407. // lblOverloadThreshold
  408. //
  409. this.lblOverloadThreshold.AutoSize = true;
  410. this.lblOverloadThreshold.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  411. this.lblOverloadThreshold.Location = new System.Drawing.Point(10, 62);
  412. this.lblOverloadThreshold.Name = "lblOverloadThreshold";
  413. this.lblOverloadThreshold.Size = new System.Drawing.Size(103, 13);
  414. this.lblOverloadThreshold.TabIndex = 2;
  415. this.lblOverloadThreshold.Text = "Overload Threshold:";
  416. //
  417. // lblOverloadDelay
  418. //
  419. this.lblOverloadDelay.AutoSize = true;
  420. this.lblOverloadDelay.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  421. this.lblOverloadDelay.Location = new System.Drawing.Point(10, 45);
  422. this.lblOverloadDelay.Name = "lblOverloadDelay";
  423. this.lblOverloadDelay.Size = new System.Drawing.Size(83, 13);
  424. this.lblOverloadDelay.TabIndex = 1;
  425. this.lblOverloadDelay.Text = "Overload Delay:";
  426. //
  427. // gbThermalControl
  428. //
  429. this.gbThermalControl.Controls.Add(this.lblThermalStatus);
  430. this.gbThermalControl.Controls.Add(this.textOperatingStatus);
  431. this.gbThermalControl.Controls.Add(this.btnStandby);
  432. this.gbThermalControl.Controls.Add(this.btnOperate);
  433. this.gbThermalControl.Location = new System.Drawing.Point(12, 168);
  434. this.gbThermalControl.Name = "gbThermalControl";
  435. this.gbThermalControl.Size = new System.Drawing.Size(241, 89);
  436. this.gbThermalControl.TabIndex = 17;
  437. this.gbThermalControl.TabStop = false;
  438. this.gbThermalControl.Text = "Thermal Control";
  439. //
  440. // lblThermalStatus
  441. //
  442. this.lblThermalStatus.AutoSize = true;
  443. this.lblThermalStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  444. this.lblThermalStatus.Location = new System.Drawing.Point(15, 28);
  445. this.lblThermalStatus.Name = "lblThermalStatus";
  446. this.lblThermalStatus.Size = new System.Drawing.Size(81, 13);
  447. this.lblThermalStatus.TabIndex = 6;
  448. this.lblThermalStatus.Text = "Thermal Status:";
  449. //
  450. // textOperatingStatus
  451. //
  452. this.textOperatingStatus.AutoSize = true;
  453. this.textOperatingStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  454. this.textOperatingStatus.Location = new System.Drawing.Point(110, 28);
  455. this.textOperatingStatus.Name = "textOperatingStatus";
  456. this.textOperatingStatus.Size = new System.Drawing.Size(86, 13);
  457. this.textOperatingStatus.TabIndex = 5;
  458. this.textOperatingStatus.Text = "Operating Status";
  459. //
  460. // btnStandby
  461. //
  462. this.btnStandby.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  463. this.btnStandby.Location = new System.Drawing.Point(110, 57);
  464. this.btnStandby.Name = "btnStandby";
  465. this.btnStandby.Size = new System.Drawing.Size(75, 23);
  466. this.btnStandby.TabIndex = 8;
  467. this.btnStandby.Text = "Standby";
  468. this.btnStandby.UseVisualStyleBackColor = true;
  469. this.btnStandby.Click += new System.EventHandler(this.StandbyButton_Click);
  470. //
  471. // btnOperate
  472. //
  473. this.btnOperate.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  474. this.btnOperate.Location = new System.Drawing.Point(18, 57);
  475. this.btnOperate.Name = "btnOperate";
  476. this.btnOperate.Size = new System.Drawing.Size(75, 23);
  477. this.btnOperate.TabIndex = 7;
  478. this.btnOperate.Text = "Operate";
  479. this.btnOperate.UseVisualStyleBackColor = true;
  480. this.btnOperate.Click += new System.EventHandler(this.OperateButton_Click);
  481. //
  482. // DetectorControlPanel
  483. //
  484. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  485. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  486. this.ClientSize = new System.Drawing.Size(564, 372);
  487. this.Controls.Add(this.gbSlideControl);
  488. this.Controls.Add(this.gbDetectorStatus);
  489. this.Controls.Add(this.gbShutterControl);
  490. this.Controls.Add(this.gbOverloadControl);
  491. this.Controls.Add(this.gbThermalControl);
  492. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  493. this.MaximizeBox = false;
  494. this.MinimizeBox = false;
  495. this.Name = "DetectorControlPanel";
  496. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  497. this.Text = "Detector Control Panel";
  498. this.gbSlideControl.ResumeLayout(false);
  499. this.gbSlideControl.PerformLayout();
  500. this.gbDetectorStatus.ResumeLayout(false);
  501. this.gbDetectorStatus.PerformLayout();
  502. this.gbShutterControl.ResumeLayout(false);
  503. this.gbShutterControl.PerformLayout();
  504. this.gbOverloadControl.ResumeLayout(false);
  505. this.gbOverloadControl.PerformLayout();
  506. this.gbThermalControl.ResumeLayout(false);
  507. this.gbThermalControl.PerformLayout();
  508. this.ResumeLayout(false);
  509. }
  510. #endregion
  511. private System.Windows.Forms.GroupBox gbSlideControl;
  512. private System.Windows.Forms.Label lblSlidePosition;
  513. private System.Windows.Forms.Button btnMoveOut;
  514. private System.Windows.Forms.Label textActivityStatus;
  515. private System.Windows.Forms.Button btnMoveStop;
  516. private System.Windows.Forms.Label textPositionStatus;
  517. private System.Windows.Forms.Button btnMoveIn;
  518. private System.Windows.Forms.Label lblSlideActivity;
  519. private System.Windows.Forms.GroupBox gbDetectorStatus;
  520. private System.Windows.Forms.TextBox tbDetectorDescription;
  521. private System.Windows.Forms.Label lblDetectorDescription;
  522. private System.Windows.Forms.Label textDetectorIsReady;
  523. private System.Windows.Forms.Label lblDetectorIsReady;
  524. private System.Windows.Forms.GroupBox gbShutterControl;
  525. private System.Windows.Forms.Button btnClose;
  526. private System.Windows.Forms.Button btnOpen;
  527. private System.Windows.Forms.Label lblShutterStatus;
  528. private System.Windows.Forms.Label textShutterStatus;
  529. private System.Windows.Forms.GroupBox gbOverloadControl;
  530. private System.Windows.Forms.Button btnToggleOverloadProtection;
  531. private System.Windows.Forms.Label lblThresholdValue;
  532. private System.Windows.Forms.Label lblDelayValue;
  533. private System.Windows.Forms.TextBox tbDelay;
  534. private System.Windows.Forms.TextBox tbThreshold;
  535. private System.Windows.Forms.Button btuSetOverloadValue;
  536. private System.Windows.Forms.Label textOverloadProtection;
  537. private System.Windows.Forms.Label lblOverloadProtection;
  538. private System.Windows.Forms.Label textInterlockStatus;
  539. private System.Windows.Forms.Label lblInterlockStatus;
  540. private System.Windows.Forms.Label textThreshold;
  541. private System.Windows.Forms.Label textDelay;
  542. private System.Windows.Forms.Label lblOverloadThreshold;
  543. private System.Windows.Forms.Label lblOverloadDelay;
  544. private System.Windows.Forms.GroupBox gbThermalControl;
  545. private System.Windows.Forms.Label lblThermalStatus;
  546. private System.Windows.Forms.Label textOperatingStatus;
  547. private System.Windows.Forms.Button btnStandby;
  548. private System.Windows.Forms.Button btnOperate;
  549. }
  550. }