FormHOZMain.Designer.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. namespace HOZProject
  2. {
  3. partial class FormHOZMain
  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.plMain = new System.Windows.Forms.Panel();
  29. this.plFill = new System.Windows.Forms.Panel();
  30. this.plProcess = new System.Windows.Forms.Panel();
  31. this.listmsg = new System.Windows.Forms.ListBox();
  32. this.pbImage = new System.Windows.Forms.PictureBox();
  33. this.plSEM = new System.Windows.Forms.Panel();
  34. this.plLeft = new System.Windows.Forms.Panel();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.plLeftContent = new System.Windows.Forms.Panel();
  37. this.plTop = new System.Windows.Forms.Panel();
  38. this.pbStop = new System.Windows.Forms.PictureBox();
  39. this.pbPause = new System.Windows.Forms.PictureBox();
  40. this.pbStart = new System.Windows.Forms.PictureBox();
  41. this.pbMax = new System.Windows.Forms.PictureBox();
  42. this.pbMin = new System.Windows.Forms.PictureBox();
  43. this.pbClose = new System.Windows.Forms.PictureBox();
  44. this.pbImportTemplateFile = new System.Windows.Forms.PictureBox();
  45. this.pbLog = new System.Windows.Forms.PictureBox();
  46. this.pbInit = new System.Windows.Forms.PictureBox();
  47. this.pbSave = new System.Windows.Forms.PictureBox();
  48. this.pbNew = new System.Windows.Forms.PictureBox();
  49. this.pbOpen = new System.Windows.Forms.PictureBox();
  50. this.plMain.SuspendLayout();
  51. this.plFill.SuspendLayout();
  52. ((System.ComponentModel.ISupportInitialize)(this.pbImage)).BeginInit();
  53. this.plLeft.SuspendLayout();
  54. this.plTop.SuspendLayout();
  55. ((System.ComponentModel.ISupportInitialize)(this.pbStop)).BeginInit();
  56. ((System.ComponentModel.ISupportInitialize)(this.pbPause)).BeginInit();
  57. ((System.ComponentModel.ISupportInitialize)(this.pbStart)).BeginInit();
  58. ((System.ComponentModel.ISupportInitialize)(this.pbMax)).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)(this.pbMin)).BeginInit();
  60. ((System.ComponentModel.ISupportInitialize)(this.pbClose)).BeginInit();
  61. ((System.ComponentModel.ISupportInitialize)(this.pbImportTemplateFile)).BeginInit();
  62. ((System.ComponentModel.ISupportInitialize)(this.pbLog)).BeginInit();
  63. ((System.ComponentModel.ISupportInitialize)(this.pbInit)).BeginInit();
  64. ((System.ComponentModel.ISupportInitialize)(this.pbSave)).BeginInit();
  65. ((System.ComponentModel.ISupportInitialize)(this.pbNew)).BeginInit();
  66. ((System.ComponentModel.ISupportInitialize)(this.pbOpen)).BeginInit();
  67. this.SuspendLayout();
  68. //
  69. // plMain
  70. //
  71. this.plMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  72. | System.Windows.Forms.AnchorStyles.Left)
  73. | System.Windows.Forms.AnchorStyles.Right)));
  74. this.plMain.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  75. this.plMain.Controls.Add(this.plFill);
  76. this.plMain.Controls.Add(this.plLeft);
  77. this.plMain.Controls.Add(this.plTop);
  78. this.plMain.Location = new System.Drawing.Point(12, 12);
  79. this.plMain.Name = "plMain";
  80. this.plMain.Size = new System.Drawing.Size(1000, 744);
  81. this.plMain.TabIndex = 1;
  82. //
  83. // plFill
  84. //
  85. this.plFill.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  86. | System.Windows.Forms.AnchorStyles.Left)
  87. | System.Windows.Forms.AnchorStyles.Right)));
  88. this.plFill.BackColor = System.Drawing.Color.Black;
  89. this.plFill.Controls.Add(this.plProcess);
  90. this.plFill.Controls.Add(this.listmsg);
  91. this.plFill.Controls.Add(this.pbImage);
  92. this.plFill.Controls.Add(this.plSEM);
  93. this.plFill.Location = new System.Drawing.Point(106, 86);
  94. this.plFill.Name = "plFill";
  95. this.plFill.Size = new System.Drawing.Size(894, 658);
  96. this.plFill.TabIndex = 5;
  97. //
  98. // plProcess
  99. //
  100. this.plProcess.BackColor = System.Drawing.Color.White;
  101. this.plProcess.Location = new System.Drawing.Point(1, 1);
  102. this.plProcess.Name = "plProcess";
  103. this.plProcess.Size = new System.Drawing.Size(218, 100);
  104. this.plProcess.TabIndex = 2;
  105. this.plProcess.Visible = false;
  106. //
  107. // listmsg
  108. //
  109. this.listmsg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  110. this.listmsg.FormattingEnabled = true;
  111. this.listmsg.ItemHeight = 12;
  112. this.listmsg.Location = new System.Drawing.Point(426, 2);
  113. this.listmsg.Margin = new System.Windows.Forms.Padding(2);
  114. this.listmsg.Name = "listmsg";
  115. this.listmsg.Size = new System.Drawing.Size(466, 220);
  116. this.listmsg.TabIndex = 18;
  117. this.listmsg.Visible = false;
  118. //
  119. // pbImage
  120. //
  121. this.pbImage.Dock = System.Windows.Forms.DockStyle.Fill;
  122. this.pbImage.Location = new System.Drawing.Point(0, 0);
  123. this.pbImage.Name = "pbImage";
  124. this.pbImage.Size = new System.Drawing.Size(894, 568);
  125. this.pbImage.TabIndex = 20;
  126. this.pbImage.TabStop = false;
  127. //
  128. // plSEM
  129. //
  130. this.plSEM.Dock = System.Windows.Forms.DockStyle.Bottom;
  131. this.plSEM.Location = new System.Drawing.Point(0, 568);
  132. this.plSEM.Name = "plSEM";
  133. this.plSEM.Size = new System.Drawing.Size(894, 90);
  134. this.plSEM.TabIndex = 19;
  135. //
  136. // plLeft
  137. //
  138. this.plLeft.BackColor = System.Drawing.Color.Black;
  139. this.plLeft.Controls.Add(this.label1);
  140. this.plLeft.Controls.Add(this.plLeftContent);
  141. this.plLeft.Dock = System.Windows.Forms.DockStyle.Left;
  142. this.plLeft.Location = new System.Drawing.Point(0, 80);
  143. this.plLeft.Name = "plLeft";
  144. this.plLeft.Size = new System.Drawing.Size(100, 664);
  145. this.plLeft.TabIndex = 4;
  146. //
  147. // label1
  148. //
  149. this.label1.AutoSize = true;
  150. this.label1.BackColor = System.Drawing.Color.Transparent;
  151. this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  152. this.label1.ForeColor = System.Drawing.Color.Gainsboro;
  153. this.label1.Location = new System.Drawing.Point(15, 3);
  154. this.label1.Name = "label1";
  155. this.label1.Size = new System.Drawing.Size(70, 12);
  156. this.label1.TabIndex = 1;
  157. this.label1.Text = "切入点列表";
  158. //
  159. // plLeftContent
  160. //
  161. this.plLeftContent.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  162. | System.Windows.Forms.AnchorStyles.Left)
  163. | System.Windows.Forms.AnchorStyles.Right)));
  164. this.plLeftContent.AutoScroll = true;
  165. this.plLeftContent.Location = new System.Drawing.Point(5, 19);
  166. this.plLeftContent.Name = "plLeftContent";
  167. this.plLeftContent.Size = new System.Drawing.Size(90, 645);
  168. this.plLeftContent.TabIndex = 0;
  169. //
  170. // plTop
  171. //
  172. this.plTop.BackColor = System.Drawing.Color.Black;
  173. this.plTop.Controls.Add(this.pbStop);
  174. this.plTop.Controls.Add(this.pbPause);
  175. this.plTop.Controls.Add(this.pbStart);
  176. this.plTop.Controls.Add(this.pbMax);
  177. this.plTop.Controls.Add(this.pbMin);
  178. this.plTop.Controls.Add(this.pbClose);
  179. this.plTop.Controls.Add(this.pbImportTemplateFile);
  180. this.plTop.Controls.Add(this.pbLog);
  181. this.plTop.Controls.Add(this.pbInit);
  182. this.plTop.Controls.Add(this.pbSave);
  183. this.plTop.Controls.Add(this.pbNew);
  184. this.plTop.Controls.Add(this.pbOpen);
  185. this.plTop.Dock = System.Windows.Forms.DockStyle.Top;
  186. this.plTop.Location = new System.Drawing.Point(0, 0);
  187. this.plTop.Name = "plTop";
  188. this.plTop.Size = new System.Drawing.Size(1000, 80);
  189. this.plTop.TabIndex = 3;
  190. //
  191. // pbStop
  192. //
  193. this.pbStop.BackgroundImage = global::HOZProject.Properties.Resources.Stop;
  194. this.pbStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  195. this.pbStop.Cursor = System.Windows.Forms.Cursors.Hand;
  196. this.pbStop.Location = new System.Drawing.Point(595, 6);
  197. this.pbStop.Name = "pbStop";
  198. this.pbStop.Size = new System.Drawing.Size(68, 71);
  199. this.pbStop.TabIndex = 8;
  200. this.pbStop.TabStop = false;
  201. this.pbStop.Click += new System.EventHandler(this.pbStop_Click);
  202. //
  203. // pbPause
  204. //
  205. this.pbPause.BackgroundImage = global::HOZProject.Properties.Resources.Pause;
  206. this.pbPause.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  207. this.pbPause.Cursor = System.Windows.Forms.Cursors.Hand;
  208. this.pbPause.Location = new System.Drawing.Point(521, 6);
  209. this.pbPause.Name = "pbPause";
  210. this.pbPause.Size = new System.Drawing.Size(68, 71);
  211. this.pbPause.TabIndex = 8;
  212. this.pbPause.TabStop = false;
  213. //
  214. // pbStart
  215. //
  216. this.pbStart.BackgroundImage = global::HOZProject.Properties.Resources.Start;
  217. this.pbStart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  218. this.pbStart.Cursor = System.Windows.Forms.Cursors.Hand;
  219. this.pbStart.Location = new System.Drawing.Point(447, 6);
  220. this.pbStart.Name = "pbStart";
  221. this.pbStart.Size = new System.Drawing.Size(68, 71);
  222. this.pbStart.TabIndex = 8;
  223. this.pbStart.TabStop = false;
  224. this.pbStart.Click += new System.EventHandler(this.pbStart_Click);
  225. //
  226. // pbMax
  227. //
  228. this.pbMax.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  229. this.pbMax.BackgroundImage = global::HOZProject.Properties.Resources.Max_Gray;
  230. this.pbMax.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  231. this.pbMax.Cursor = System.Windows.Forms.Cursors.Hand;
  232. this.pbMax.Location = new System.Drawing.Point(935, 0);
  233. this.pbMax.Name = "pbMax";
  234. this.pbMax.Size = new System.Drawing.Size(28, 31);
  235. this.pbMax.TabIndex = 7;
  236. this.pbMax.TabStop = false;
  237. this.pbMax.Click += new System.EventHandler(this.pbMax_Click);
  238. this.pbMax.MouseEnter += new System.EventHandler(this.pbMax_MouseEnter);
  239. this.pbMax.MouseLeave += new System.EventHandler(this.pbMax_MouseLeave);
  240. //
  241. // pbMin
  242. //
  243. this.pbMin.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  244. this.pbMin.BackgroundImage = global::HOZProject.Properties.Resources.Min_Gray;
  245. this.pbMin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  246. this.pbMin.Cursor = System.Windows.Forms.Cursors.Hand;
  247. this.pbMin.Location = new System.Drawing.Point(901, 0);
  248. this.pbMin.Name = "pbMin";
  249. this.pbMin.Size = new System.Drawing.Size(28, 31);
  250. this.pbMin.TabIndex = 7;
  251. this.pbMin.TabStop = false;
  252. this.pbMin.Click += new System.EventHandler(this.pbMin_Click);
  253. this.pbMin.MouseEnter += new System.EventHandler(this.pbMin_MouseEnter);
  254. this.pbMin.MouseLeave += new System.EventHandler(this.pbMin_MouseLeave);
  255. //
  256. // pbClose
  257. //
  258. this.pbClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  259. this.pbClose.BackgroundImage = global::HOZProject.Properties.Resources.exit_Gray;
  260. this.pbClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  261. this.pbClose.Cursor = System.Windows.Forms.Cursors.Hand;
  262. this.pbClose.Location = new System.Drawing.Point(969, 0);
  263. this.pbClose.Name = "pbClose";
  264. this.pbClose.Size = new System.Drawing.Size(28, 31);
  265. this.pbClose.TabIndex = 7;
  266. this.pbClose.TabStop = false;
  267. this.pbClose.Click += new System.EventHandler(this.pbClose_Click);
  268. this.pbClose.MouseEnter += new System.EventHandler(this.pbClose_MouseEnter);
  269. this.pbClose.MouseLeave += new System.EventHandler(this.pbClose_MouseLeave);
  270. //
  271. // pbImportTemplateFile
  272. //
  273. this.pbImportTemplateFile.BackgroundImage = global::HOZProject.Properties.Resources.ImportConfigFile;
  274. this.pbImportTemplateFile.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  275. this.pbImportTemplateFile.Cursor = System.Windows.Forms.Cursors.Hand;
  276. this.pbImportTemplateFile.Location = new System.Drawing.Point(374, 6);
  277. this.pbImportTemplateFile.Name = "pbImportTemplateFile";
  278. this.pbImportTemplateFile.Size = new System.Drawing.Size(68, 71);
  279. this.pbImportTemplateFile.TabIndex = 6;
  280. this.pbImportTemplateFile.TabStop = false;
  281. this.pbImportTemplateFile.Click += new System.EventHandler(this.pbImportTemplateFile_Click);
  282. //
  283. // pbLog
  284. //
  285. this.pbLog.BackgroundImage = global::HOZProject.Properties.Resources.Log;
  286. this.pbLog.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  287. this.pbLog.Cursor = System.Windows.Forms.Cursors.Hand;
  288. this.pbLog.Location = new System.Drawing.Point(301, 6);
  289. this.pbLog.Name = "pbLog";
  290. this.pbLog.Size = new System.Drawing.Size(68, 71);
  291. this.pbLog.TabIndex = 6;
  292. this.pbLog.TabStop = false;
  293. this.pbLog.Click += new System.EventHandler(this.pbLog_Click);
  294. //
  295. // pbInit
  296. //
  297. this.pbInit.BackgroundImage = global::HOZProject.Properties.Resources.init;
  298. this.pbInit.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  299. this.pbInit.Cursor = System.Windows.Forms.Cursors.Hand;
  300. this.pbInit.Location = new System.Drawing.Point(227, 6);
  301. this.pbInit.Name = "pbInit";
  302. this.pbInit.Size = new System.Drawing.Size(68, 71);
  303. this.pbInit.TabIndex = 5;
  304. this.pbInit.TabStop = false;
  305. this.pbInit.Click += new System.EventHandler(this.pbInit_Click);
  306. //
  307. // pbSave
  308. //
  309. this.pbSave.BackgroundImage = global::HOZProject.Properties.Resources.save;
  310. this.pbSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  311. this.pbSave.Cursor = System.Windows.Forms.Cursors.Hand;
  312. this.pbSave.Location = new System.Drawing.Point(153, 6);
  313. this.pbSave.Name = "pbSave";
  314. this.pbSave.Size = new System.Drawing.Size(68, 71);
  315. this.pbSave.TabIndex = 4;
  316. this.pbSave.TabStop = false;
  317. this.pbSave.Click += new System.EventHandler(this.pbSave_Click);
  318. //
  319. // pbNew
  320. //
  321. this.pbNew.BackgroundImage = global::HOZProject.Properties.Resources.New;
  322. this.pbNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  323. this.pbNew.Cursor = System.Windows.Forms.Cursors.Hand;
  324. this.pbNew.Location = new System.Drawing.Point(5, 6);
  325. this.pbNew.Name = "pbNew";
  326. this.pbNew.Size = new System.Drawing.Size(68, 71);
  327. this.pbNew.TabIndex = 3;
  328. this.pbNew.TabStop = false;
  329. this.pbNew.Click += new System.EventHandler(this.pbNew_Click);
  330. //
  331. // pbOpen
  332. //
  333. this.pbOpen.BackgroundImage = global::HOZProject.Properties.Resources.open;
  334. this.pbOpen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  335. this.pbOpen.Cursor = System.Windows.Forms.Cursors.Hand;
  336. this.pbOpen.Location = new System.Drawing.Point(79, 6);
  337. this.pbOpen.Name = "pbOpen";
  338. this.pbOpen.Size = new System.Drawing.Size(68, 71);
  339. this.pbOpen.TabIndex = 3;
  340. this.pbOpen.TabStop = false;
  341. this.pbOpen.Click += new System.EventHandler(this.pbOpen_Click);
  342. //
  343. // FormHOZMain
  344. //
  345. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  346. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  347. this.BackColor = System.Drawing.SystemColors.WindowFrame;
  348. this.ClientSize = new System.Drawing.Size(1024, 768);
  349. this.ControlBox = false;
  350. this.Controls.Add(this.plMain);
  351. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  352. this.Name = "FormHOZMain";
  353. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  354. this.Text = "FormHOZMain";
  355. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  356. this.Load += new System.EventHandler(this.FormHOZMain_Load);
  357. this.plMain.ResumeLayout(false);
  358. this.plFill.ResumeLayout(false);
  359. ((System.ComponentModel.ISupportInitialize)(this.pbImage)).EndInit();
  360. this.plLeft.ResumeLayout(false);
  361. this.plLeft.PerformLayout();
  362. this.plTop.ResumeLayout(false);
  363. ((System.ComponentModel.ISupportInitialize)(this.pbStop)).EndInit();
  364. ((System.ComponentModel.ISupportInitialize)(this.pbPause)).EndInit();
  365. ((System.ComponentModel.ISupportInitialize)(this.pbStart)).EndInit();
  366. ((System.ComponentModel.ISupportInitialize)(this.pbMax)).EndInit();
  367. ((System.ComponentModel.ISupportInitialize)(this.pbMin)).EndInit();
  368. ((System.ComponentModel.ISupportInitialize)(this.pbClose)).EndInit();
  369. ((System.ComponentModel.ISupportInitialize)(this.pbImportTemplateFile)).EndInit();
  370. ((System.ComponentModel.ISupportInitialize)(this.pbLog)).EndInit();
  371. ((System.ComponentModel.ISupportInitialize)(this.pbInit)).EndInit();
  372. ((System.ComponentModel.ISupportInitialize)(this.pbSave)).EndInit();
  373. ((System.ComponentModel.ISupportInitialize)(this.pbNew)).EndInit();
  374. ((System.ComponentModel.ISupportInitialize)(this.pbOpen)).EndInit();
  375. this.ResumeLayout(false);
  376. }
  377. #endregion
  378. private System.Windows.Forms.Panel plMain;
  379. public System.Windows.Forms.Panel plProcess;
  380. private System.Windows.Forms.Panel plLeft;
  381. public System.Windows.Forms.Panel plTop;
  382. public System.Windows.Forms.Panel plFill;
  383. public System.Windows.Forms.Panel plLeftContent;
  384. private System.Windows.Forms.Label label1;
  385. private System.Windows.Forms.PictureBox pbOpen;
  386. private System.Windows.Forms.PictureBox pbLog;
  387. private System.Windows.Forms.PictureBox pbInit;
  388. private System.Windows.Forms.PictureBox pbSave;
  389. private System.Windows.Forms.PictureBox pbMin;
  390. private System.Windows.Forms.PictureBox pbClose;
  391. private System.Windows.Forms.PictureBox pbMax;
  392. private System.Windows.Forms.PictureBox pbNew;
  393. private System.Windows.Forms.PictureBox pbStart;
  394. private System.Windows.Forms.PictureBox pbStop;
  395. private System.Windows.Forms.PictureBox pbPause;
  396. private System.Windows.Forms.ListBox listmsg;
  397. private System.Windows.Forms.Panel plSEM;
  398. private System.Windows.Forms.PictureBox pbImage;
  399. private System.Windows.Forms.PictureBox pbImportTemplateFile;
  400. }
  401. }