Form1.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. namespace DataGathering
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  34. this.textBox1 = new System.Windows.Forms.TextBox();
  35. this.textBox2 = new System.Windows.Forms.TextBox();
  36. this.button3 = new System.Windows.Forms.Button();
  37. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // button1
  41. //
  42. this.button1.Location = new System.Drawing.Point(647, 770);
  43. this.button1.Name = "button1";
  44. this.button1.Size = new System.Drawing.Size(96, 43);
  45. this.button1.TabIndex = 0;
  46. this.button1.Text = "开始";
  47. this.button1.UseVisualStyleBackColor = true;
  48. this.button1.Click += new System.EventHandler(this.button1_Click);
  49. //
  50. // button2
  51. //
  52. this.button2.Location = new System.Drawing.Point(1186, 769);
  53. this.button2.Name = "button2";
  54. this.button2.Size = new System.Drawing.Size(100, 44);
  55. this.button2.TabIndex = 1;
  56. this.button2.Text = "结束";
  57. this.button2.UseVisualStyleBackColor = true;
  58. this.button2.Click += new System.EventHandler(this.button2_Click);
  59. //
  60. // chart1
  61. //
  62. chartArea2.Name = "ChartArea1";
  63. this.chart1.ChartAreas.Add(chartArea2);
  64. legend2.Name = "Legend1";
  65. this.chart1.Legends.Add(legend2);
  66. this.chart1.Location = new System.Drawing.Point(148, 12);
  67. this.chart1.Name = "chart1";
  68. series2.ChartArea = "ChartArea1";
  69. series2.Legend = "Legend1";
  70. series2.Name = "Series1";
  71. this.chart1.Series.Add(series2);
  72. this.chart1.Size = new System.Drawing.Size(2110, 708);
  73. this.chart1.TabIndex = 2;
  74. this.chart1.Text = "chart1";
  75. //
  76. // textBox1
  77. //
  78. this.textBox1.Location = new System.Drawing.Point(12, 49);
  79. this.textBox1.Name = "textBox1";
  80. this.textBox1.Size = new System.Drawing.Size(100, 25);
  81. this.textBox1.TabIndex = 3;
  82. this.textBox1.Text = "45";
  83. //
  84. // textBox2
  85. //
  86. this.textBox2.Location = new System.Drawing.Point(12, 140);
  87. this.textBox2.Name = "textBox2";
  88. this.textBox2.Size = new System.Drawing.Size(100, 25);
  89. this.textBox2.TabIndex = 4;
  90. this.textBox2.Text = "135";
  91. //
  92. // button3
  93. //
  94. this.button3.Location = new System.Drawing.Point(895, 753);
  95. this.button3.Name = "button3";
  96. this.button3.Size = new System.Drawing.Size(167, 33);
  97. this.button3.TabIndex = 5;
  98. this.button3.Text = "采集";
  99. this.button3.UseVisualStyleBackColor = true;
  100. this.button3.Click += new System.EventHandler(this.button3_Click);
  101. //
  102. // Form1
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  106. this.ClientSize = new System.Drawing.Size(2270, 825);
  107. this.Controls.Add(this.button3);
  108. this.Controls.Add(this.textBox2);
  109. this.Controls.Add(this.textBox1);
  110. this.Controls.Add(this.chart1);
  111. this.Controls.Add(this.button2);
  112. this.Controls.Add(this.button1);
  113. this.Name = "Form1";
  114. this.Text = "Form1";
  115. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  116. this.ResumeLayout(false);
  117. this.PerformLayout();
  118. }
  119. #endregion
  120. private System.Windows.Forms.Button button1;
  121. private System.Windows.Forms.Button button2;
  122. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  123. private System.Windows.Forms.TextBox textBox1;
  124. private System.Windows.Forms.TextBox textBox2;
  125. private System.Windows.Forms.Button button3;
  126. }
  127. }