OTSMeasureStatusWindow.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. namespace OTSMeasureApp
  2. {
  3. partial class OTSMeasureStatusWindow
  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.components = new System.ComponentModel.Container();
  29. this.picBox = new System.Windows.Forms.PictureBox();
  30. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  31. this.SampleParaLock = new System.Windows.Forms.ToolStripMenuItem();
  32. this.VisualAdjustingMenu = new System.Windows.Forms.ToolStripMenuItem();
  33. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  34. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  35. this.ChangeDiffImageShow = new System.Windows.Forms.ToolStripMenuItem();
  36. this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  38. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  39. this.MenuItemLineScan = new System.Windows.Forms.ToolStripMenuItem();
  40. this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
  41. this.PointScanElementMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.ExportScanInfoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.panelXray = new System.Windows.Forms.Panel();
  44. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  45. this.timer1 = new System.Windows.Forms.Timer(this.components);
  46. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  47. this.批量采集ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  48. ((System.ComponentModel.ISupportInitialize)(this.picBox)).BeginInit();
  49. this.contextMenuStrip1.SuspendLayout();
  50. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  51. this.SuspendLayout();
  52. //
  53. // picBox
  54. //
  55. this.picBox.BackColor = System.Drawing.Color.Transparent;
  56. this.picBox.Location = new System.Drawing.Point(0, 0);
  57. this.picBox.Margin = new System.Windows.Forms.Padding(2);
  58. this.picBox.Name = "picBox";
  59. this.picBox.Size = new System.Drawing.Size(382, 300);
  60. this.picBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  61. this.picBox.TabIndex = 0;
  62. this.picBox.TabStop = false;
  63. this.picBox.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
  64. this.picBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseClick);
  65. this.picBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
  66. this.picBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
  67. //
  68. // contextMenuStrip1
  69. //
  70. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
  71. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  72. this.SampleParaLock,
  73. this.VisualAdjustingMenu,
  74. this.toolStripMenuItem1,
  75. this.toolStripSeparator1,
  76. this.ChangeDiffImageShow,
  77. this.ToolStripMenuItem,
  78. this.toolStripMenuItem2,
  79. this.toolStripSeparator2,
  80. this.MenuItemLineScan,
  81. this.toolStripSeparator3,
  82. this.PointScanElementMenuItem,
  83. this.批量采集ToolStripMenuItem,
  84. this.ExportScanInfoMenuItem});
  85. this.contextMenuStrip1.Name = "contextMenuStrip1";
  86. this.contextMenuStrip1.Size = new System.Drawing.Size(243, 264);
  87. this.contextMenuStrip1.Opened += new System.EventHandler(this.contextMenuStrip1_Opened);
  88. //
  89. // SampleParaLock
  90. //
  91. this.SampleParaLock.Name = "SampleParaLock";
  92. this.SampleParaLock.Size = new System.Drawing.Size(242, 22);
  93. this.SampleParaLock.Text = "获取BSE图";
  94. this.SampleParaLock.Click += new System.EventHandler(this.AcquireBSEImage_Click);
  95. //
  96. // VisualAdjustingMenu
  97. //
  98. this.VisualAdjustingMenu.Name = "VisualAdjustingMenu";
  99. this.VisualAdjustingMenu.Size = new System.Drawing.Size(242, 22);
  100. this.VisualAdjustingMenu.Text = "可视化设置BSE图背景灰度范围";
  101. this.VisualAdjustingMenu.Click += new System.EventHandler(this.ViewStripMenuItem_Click);
  102. //
  103. // toolStripMenuItem1
  104. //
  105. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  106. this.toolStripMenuItem1.Size = new System.Drawing.Size(242, 22);
  107. this.toolStripMenuItem1.Text = "可视化设置特殊颗粒灰度范围";
  108. this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  109. //
  110. // toolStripSeparator1
  111. //
  112. this.toolStripSeparator1.Name = "toolStripSeparator1";
  113. this.toolStripSeparator1.Size = new System.Drawing.Size(239, 6);
  114. //
  115. // ChangeDiffImageShow
  116. //
  117. this.ChangeDiffImageShow.Name = "ChangeDiffImageShow";
  118. this.ChangeDiffImageShow.Size = new System.Drawing.Size(242, 22);
  119. this.ChangeDiffImageShow.Text = "切换至BSE图";
  120. this.ChangeDiffImageShow.Click += new System.EventHandler(this.ChangeDiffImageShow_Click);
  121. //
  122. // ToolStripMenuItem
  123. //
  124. this.ToolStripMenuItem.Name = "ToolStripMenuItem";
  125. this.ToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
  126. this.ToolStripMenuItem.Text = "BSE去背景图";
  127. this.ToolStripMenuItem.Click += new System.EventHandler(this.ShowRemoveBGImage_Click);
  128. //
  129. // toolStripMenuItem2
  130. //
  131. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  132. this.toolStripMenuItem2.Size = new System.Drawing.Size(242, 22);
  133. this.toolStripMenuItem2.Text = "BSE去背景彩色图";
  134. this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  135. //
  136. // toolStripSeparator2
  137. //
  138. this.toolStripSeparator2.Name = "toolStripSeparator2";
  139. this.toolStripSeparator2.Size = new System.Drawing.Size(239, 6);
  140. //
  141. // MenuItemLineScan
  142. //
  143. this.MenuItemLineScan.CheckOnClick = true;
  144. this.MenuItemLineScan.Name = "MenuItemLineScan";
  145. this.MenuItemLineScan.Size = new System.Drawing.Size(242, 22);
  146. this.MenuItemLineScan.Text = "线扫描曲线";
  147. this.MenuItemLineScan.Click += new System.EventHandler(this.ShowLineScanChart_Click);
  148. //
  149. // toolStripSeparator3
  150. //
  151. this.toolStripSeparator3.Name = "toolStripSeparator3";
  152. this.toolStripSeparator3.Size = new System.Drawing.Size(239, 6);
  153. //
  154. // PointScanElementMenuItem
  155. //
  156. this.PointScanElementMenuItem.Name = "PointScanElementMenuItem";
  157. this.PointScanElementMenuItem.Size = new System.Drawing.Size(242, 22);
  158. this.PointScanElementMenuItem.Text = "X-Ray采集";
  159. this.PointScanElementMenuItem.Click += new System.EventHandler(this.单点采集MenuItem_Click);
  160. //
  161. // ExportScanInfoMenuItem
  162. //
  163. this.ExportScanInfoMenuItem.Name = "ExportScanInfoMenuItem";
  164. this.ExportScanInfoMenuItem.Size = new System.Drawing.Size(242, 22);
  165. this.ExportScanInfoMenuItem.Text = "输出X-Ray信息";
  166. this.ExportScanInfoMenuItem.Click += new System.EventHandler(this.ExportScanInfoMenuItem_Click);
  167. //
  168. // panelXray
  169. //
  170. this.panelXray.Dock = System.Windows.Forms.DockStyle.Bottom;
  171. this.panelXray.Location = new System.Drawing.Point(0, 300);
  172. this.panelXray.Margin = new System.Windows.Forms.Padding(2);
  173. this.panelXray.Name = "panelXray";
  174. this.panelXray.Size = new System.Drawing.Size(782, 169);
  175. this.panelXray.TabIndex = 0;
  176. //
  177. // backgroundWorker1
  178. //
  179. this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
  180. //
  181. // timer1
  182. //
  183. this.timer1.Interval = 4000;
  184. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  185. //
  186. // pictureBox2
  187. //
  188. this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
  189. this.pictureBox2.Location = new System.Drawing.Point(386, 0);
  190. this.pictureBox2.Margin = new System.Windows.Forms.Padding(2);
  191. this.pictureBox2.Name = "pictureBox2";
  192. this.pictureBox2.Size = new System.Drawing.Size(394, 300);
  193. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  194. this.pictureBox2.TabIndex = 0;
  195. this.pictureBox2.TabStop = false;
  196. this.pictureBox2.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox2_Paint);
  197. this.pictureBox2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseClick);
  198. this.pictureBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
  199. this.pictureBox2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
  200. //
  201. // 批量采集ToolStripMenuItem
  202. //
  203. this.批量采集ToolStripMenuItem.Name = "批量采集ToolStripMenuItem";
  204. this.批量采集ToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
  205. this.批量采集ToolStripMenuItem.Text = "批量采集";
  206. this.批量采集ToolStripMenuItem.Click += new System.EventHandler(this.批量采集ToolStripMenuItem_Click);
  207. //
  208. // OTSMeasureStatusWindow
  209. //
  210. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  211. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  212. this.AutoSize = true;
  213. this.ClientSize = new System.Drawing.Size(782, 469);
  214. this.CloseButton = false;
  215. this.CloseButtonVisible = false;
  216. this.Controls.Add(this.panelXray);
  217. this.Controls.Add(this.picBox);
  218. this.Controls.Add(this.pictureBox2);
  219. this.DockAreas = ((OTS.WinFormsUI.Docking.DockAreas)((OTS.WinFormsUI.Docking.DockAreas.DockTop | OTS.WinFormsUI.Docking.DockAreas.Document)));
  220. this.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  221. this.Name = "OTSMeasureStatusWindow";
  222. this.Text = "OTSMeasureStatus";
  223. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  224. this.Activated += new System.EventHandler(this.OTSMeasureStatusWindow_Activated);
  225. this.Load += new System.EventHandler(this.OTSMeasureStatusWindow_Load);
  226. this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.OTSMeasureStatusWindow_MouseClick);
  227. ((System.ComponentModel.ISupportInitialize)(this.picBox)).EndInit();
  228. this.contextMenuStrip1.ResumeLayout(false);
  229. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  230. this.ResumeLayout(false);
  231. }
  232. #endregion
  233. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  234. private System.Windows.Forms.ToolStripMenuItem SampleParaLock;
  235. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
  236. private System.Windows.Forms.ToolStripMenuItem MenuItemLineScan;
  237. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  238. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  239. public System.Windows.Forms.PictureBox picBox;
  240. private System.Windows.Forms.ToolStripMenuItem ChangeDiffImageShow;
  241. public System.Windows.Forms.Panel panelXray;
  242. private OTSIncAGraph.Controls.Control_XRayTable control_XRayTable1;
  243. private System.Windows.Forms.ToolStripMenuItem PointScanElementMenuItem;
  244. private System.Windows.Forms.ToolStripMenuItem ExportScanInfoMenuItem;
  245. private System.Windows.Forms.ToolStripMenuItem VisualAdjustingMenu;
  246. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  247. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  248. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  249. private System.Windows.Forms.Timer timer1;
  250. public System.Windows.Forms.PictureBox pictureBox2;
  251. private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
  252. private System.Windows.Forms.ToolStripMenuItem 批量采集ToolStripMenuItem;
  253. }
  254. }