ToolWindow.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. namespace OTSMeasureApp
  2. {
  3. partial class ToolWindow
  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.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
  32. this.tbGrayStart = new System.Windows.Forms.TrackBar();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.nuDownGrayStart = new System.Windows.Forms.NumericUpDown();
  35. this.nuDownGrayEnd = new System.Windows.Forms.NumericUpDown();
  36. this.label2 = new System.Windows.Forms.Label();
  37. this.btnYes = new System.Windows.Forms.Button();
  38. this.btnCancel = new System.Windows.Forms.Button();
  39. this.tbGrayEnd = new System.Windows.Forms.TrackBar();
  40. this.groupBox1 = new System.Windows.Forms.GroupBox();
  41. this.panel1 = new System.Windows.Forms.Panel();
  42. this.myChart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  43. this.pbBSEImage = new System.Windows.Forms.PictureBox();
  44. ((System.ComponentModel.ISupportInitialize)(this.tbGrayStart)).BeginInit();
  45. ((System.ComponentModel.ISupportInitialize)(this.nuDownGrayStart)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.nuDownGrayEnd)).BeginInit();
  47. ((System.ComponentModel.ISupportInitialize)(this.tbGrayEnd)).BeginInit();
  48. this.groupBox1.SuspendLayout();
  49. this.panel1.SuspendLayout();
  50. ((System.ComponentModel.ISupportInitialize)(this.myChart1)).BeginInit();
  51. ((System.ComponentModel.ISupportInitialize)(this.pbBSEImage)).BeginInit();
  52. this.SuspendLayout();
  53. //
  54. // tbGrayStart
  55. //
  56. this.tbGrayStart.Location = new System.Drawing.Point(808, 72);
  57. this.tbGrayStart.Maximum = 255;
  58. this.tbGrayStart.Name = "tbGrayStart";
  59. this.tbGrayStart.Size = new System.Drawing.Size(97, 45);
  60. this.tbGrayStart.TabIndex = 5;
  61. this.tbGrayStart.TickStyle = System.Windows.Forms.TickStyle.None;
  62. this.tbGrayStart.Scroll += new System.EventHandler(this.tbGrayStart_Scroll);
  63. //
  64. // label1
  65. //
  66. this.label1.AutoSize = true;
  67. this.label1.Location = new System.Drawing.Point(861, 17);
  68. this.label1.Name = "label1";
  69. this.label1.Size = new System.Drawing.Size(77, 12);
  70. this.label1.TabIndex = 6;
  71. this.label1.Text = "背景灰度范围";
  72. //
  73. // nuDownGrayStart
  74. //
  75. this.nuDownGrayStart.Location = new System.Drawing.Point(821, 45);
  76. this.nuDownGrayStart.Maximum = new decimal(new int[] {
  77. 255,
  78. 0,
  79. 0,
  80. 0});
  81. this.nuDownGrayStart.Name = "nuDownGrayStart";
  82. this.nuDownGrayStart.Size = new System.Drawing.Size(68, 21);
  83. this.nuDownGrayStart.TabIndex = 8;
  84. this.nuDownGrayStart.ValueChanged += new System.EventHandler(this.nuDwonGrayStart_ValueChanged);
  85. //
  86. // nuDownGrayEnd
  87. //
  88. this.nuDownGrayEnd.Location = new System.Drawing.Point(921, 45);
  89. this.nuDownGrayEnd.Maximum = new decimal(new int[] {
  90. 255,
  91. 0,
  92. 0,
  93. 0});
  94. this.nuDownGrayEnd.Name = "nuDownGrayEnd";
  95. this.nuDownGrayEnd.Size = new System.Drawing.Size(68, 21);
  96. this.nuDownGrayEnd.TabIndex = 7;
  97. this.nuDownGrayEnd.ValueChanged += new System.EventHandler(this.nuDownGrayEnd_ValueChanged);
  98. //
  99. // label2
  100. //
  101. this.label2.AutoSize = true;
  102. this.label2.Location = new System.Drawing.Point(904, 47);
  103. this.label2.Name = "label2";
  104. this.label2.Size = new System.Drawing.Size(11, 12);
  105. this.label2.TabIndex = 9;
  106. this.label2.Text = "-";
  107. //
  108. // btnYes
  109. //
  110. this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  111. this.btnYes.Location = new System.Drawing.Point(821, 111);
  112. this.btnYes.Name = "btnYes";
  113. this.btnYes.Size = new System.Drawing.Size(75, 30);
  114. this.btnYes.TabIndex = 10;
  115. this.btnYes.Text = "确认";
  116. this.btnYes.UseVisualStyleBackColor = true;
  117. this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
  118. //
  119. // btnCancel
  120. //
  121. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  122. this.btnCancel.Location = new System.Drawing.Point(921, 111);
  123. this.btnCancel.Name = "btnCancel";
  124. this.btnCancel.Size = new System.Drawing.Size(75, 30);
  125. this.btnCancel.TabIndex = 10;
  126. this.btnCancel.Text = "取消";
  127. this.btnCancel.UseVisualStyleBackColor = true;
  128. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  129. //
  130. // tbGrayEnd
  131. //
  132. this.tbGrayEnd.Location = new System.Drawing.Point(911, 72);
  133. this.tbGrayEnd.Maximum = 255;
  134. this.tbGrayEnd.Name = "tbGrayEnd";
  135. this.tbGrayEnd.Size = new System.Drawing.Size(97, 45);
  136. this.tbGrayEnd.TabIndex = 11;
  137. this.tbGrayEnd.TickStyle = System.Windows.Forms.TickStyle.None;
  138. this.tbGrayEnd.Scroll += new System.EventHandler(this.tbGrayEnd_Scroll);
  139. //
  140. // groupBox1
  141. //
  142. this.groupBox1.Controls.Add(this.panel1);
  143. this.groupBox1.Controls.Add(this.btnCancel);
  144. this.groupBox1.Controls.Add(this.btnYes);
  145. this.groupBox1.Controls.Add(this.label2);
  146. this.groupBox1.Controls.Add(this.nuDownGrayEnd);
  147. this.groupBox1.Controls.Add(this.nuDownGrayStart);
  148. this.groupBox1.Controls.Add(this.label1);
  149. this.groupBox1.Controls.Add(this.tbGrayStart);
  150. this.groupBox1.Controls.Add(this.tbGrayEnd);
  151. this.groupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  152. this.groupBox1.Location = new System.Drawing.Point(0, 535);
  153. this.groupBox1.Name = "groupBox1";
  154. this.groupBox1.Size = new System.Drawing.Size(1008, 162);
  155. this.groupBox1.TabIndex = 5;
  156. this.groupBox1.TabStop = false;
  157. this.groupBox1.Text = "设置参数";
  158. //
  159. // panel1
  160. //
  161. this.panel1.Controls.Add(this.myChart1);
  162. this.panel1.Location = new System.Drawing.Point(6, 20);
  163. this.panel1.Name = "panel1";
  164. this.panel1.Size = new System.Drawing.Size(796, 130);
  165. this.panel1.TabIndex = 14;
  166. //
  167. // myChart1
  168. //
  169. chartArea1.AlignmentStyle = System.Windows.Forms.DataVisualization.Charting.AreaAlignmentStyles.None;
  170. chartArea1.Area3DStyle.Inclination = 0;
  171. chartArea1.Area3DStyle.IsClustered = true;
  172. chartArea1.Area3DStyle.IsRightAngleAxes = false;
  173. chartArea1.Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
  174. chartArea1.Area3DStyle.Perspective = 5;
  175. chartArea1.Area3DStyle.Rotation = 0;
  176. chartArea1.Area3DStyle.WallWidth = 10;
  177. chartArea1.Name = "ChartArea1";
  178. this.myChart1.ChartAreas.Add(chartArea1);
  179. this.myChart1.Cursor = System.Windows.Forms.Cursors.Arrow;
  180. this.myChart1.Dock = System.Windows.Forms.DockStyle.Fill;
  181. legend1.Name = "Legend1";
  182. this.myChart1.Legends.Add(legend1);
  183. this.myChart1.Location = new System.Drawing.Point(0, 0);
  184. this.myChart1.Margin = new System.Windows.Forms.Padding(2);
  185. this.myChart1.Name = "myChart1";
  186. this.myChart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.EarthTones;
  187. series1.ChartArea = "ChartArea1";
  188. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
  189. series1.Legend = "Legend1";
  190. series1.Name = "Series1";
  191. this.myChart1.Series.Add(series1);
  192. this.myChart1.Size = new System.Drawing.Size(796, 130);
  193. this.myChart1.TabIndex = 7;
  194. this.myChart1.Text = "chart1";
  195. this.myChart1.TextAntiAliasingQuality = System.Windows.Forms.DataVisualization.Charting.TextAntiAliasingQuality.Normal;
  196. title1.Name = "Title1";
  197. title1.Text = "---";
  198. this.myChart1.Titles.Add(title1);
  199. //
  200. // pbBSEImage
  201. //
  202. this.pbBSEImage.Dock = System.Windows.Forms.DockStyle.Fill;
  203. this.pbBSEImage.Location = new System.Drawing.Point(0, 0);
  204. this.pbBSEImage.Name = "pbBSEImage";
  205. this.pbBSEImage.Size = new System.Drawing.Size(1008, 535);
  206. this.pbBSEImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  207. this.pbBSEImage.TabIndex = 6;
  208. this.pbBSEImage.TabStop = false;
  209. //
  210. // ToolWindow
  211. //
  212. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  213. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  214. this.ClientSize = new System.Drawing.Size(1008, 697);
  215. this.Controls.Add(this.pbBSEImage);
  216. this.Controls.Add(this.groupBox1);
  217. this.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  218. this.Name = "ToolWindow";
  219. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  220. this.Text = "设置BSE图背景灰度范围";
  221. this.Load += new System.EventHandler(this.ToolWindow_Load);
  222. ((System.ComponentModel.ISupportInitialize)(this.tbGrayStart)).EndInit();
  223. ((System.ComponentModel.ISupportInitialize)(this.nuDownGrayStart)).EndInit();
  224. ((System.ComponentModel.ISupportInitialize)(this.nuDownGrayEnd)).EndInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.tbGrayEnd)).EndInit();
  226. this.groupBox1.ResumeLayout(false);
  227. this.groupBox1.PerformLayout();
  228. this.panel1.ResumeLayout(false);
  229. ((System.ComponentModel.ISupportInitialize)(this.myChart1)).EndInit();
  230. ((System.ComponentModel.ISupportInitialize)(this.pbBSEImage)).EndInit();
  231. this.ResumeLayout(false);
  232. }
  233. #endregion
  234. private System.Windows.Forms.TrackBar tbGrayStart;
  235. private System.Windows.Forms.Label label1;
  236. private System.Windows.Forms.NumericUpDown nuDownGrayStart;
  237. private System.Windows.Forms.NumericUpDown nuDownGrayEnd;
  238. private System.Windows.Forms.Label label2;
  239. private System.Windows.Forms.Button btnYes;
  240. private System.Windows.Forms.Button btnCancel;
  241. private System.Windows.Forms.TrackBar tbGrayEnd;
  242. private System.Windows.Forms.GroupBox groupBox1;
  243. private System.Windows.Forms.PictureBox pbBSEImage;
  244. private System.Windows.Forms.Panel panel1;
  245. private System.Windows.Forms.DataVisualization.Charting.Chart myChart1;
  246. }
  247. }