GroupLmax.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. namespace OTSExtremum
  2. {
  3. partial class GroupLmax
  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.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GroupLmax));
  36. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  37. this.dtgrid = new System.Windows.Forms.DataGridView();
  38. this.Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.Lmax = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.se = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.CI1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.CI2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  44. ((System.ComponentModel.ISupportInitialize)(this.dtgrid)).BeginInit();
  45. this.SuspendLayout();
  46. //
  47. // chart1
  48. //
  49. chartArea1.AxisX.MajorGrid.Enabled = false;
  50. chartArea1.AxisX.MajorGrid.Interval = 50D;
  51. chartArea1.AxisX.MajorTickMark.Interval = 100D;
  52. chartArea1.AxisX.MinorTickMark.Enabled = true;
  53. chartArea1.AxisX.MinorTickMark.Interval = 50D;
  54. chartArea1.AxisX.MinorTickMark.Size = 0.5F;
  55. chartArea1.AxisY.MajorGrid.Enabled = false;
  56. chartArea1.AxisY.MajorTickMark.Interval = 2D;
  57. chartArea1.AxisY.MinorTickMark.Enabled = true;
  58. chartArea1.AxisY.MinorTickMark.Interval = 1D;
  59. chartArea1.AxisY.MinorTickMark.Size = 0.5F;
  60. chartArea1.Name = "ChartArea1";
  61. this.chart1.ChartAreas.Add(chartArea1);
  62. legend1.DockedToChartArea = "ChartArea1";
  63. legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Left;
  64. legend1.Name = "Legend1";
  65. this.chart1.Legends.Add(legend1);
  66. this.chart1.Location = new System.Drawing.Point(12, 23);
  67. this.chart1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  68. this.chart1.Name = "chart1";
  69. series1.ChartArea = "ChartArea1";
  70. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  71. series1.Legend = "Legend1";
  72. series1.MarkerBorderColor = System.Drawing.Color.Red;
  73. series1.MarkerColor = System.Drawing.Color.Red;
  74. series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
  75. series1.Name = "Lmax";
  76. this.chart1.Series.Add(series1);
  77. this.chart1.Size = new System.Drawing.Size(1267, 401);
  78. this.chart1.TabIndex = 3;
  79. this.chart1.Text = "chart1";
  80. //
  81. // dtgrid
  82. //
  83. this.dtgrid.AllowUserToAddRows = false;
  84. this.dtgrid.AllowUserToDeleteRows = false;
  85. this.dtgrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  86. this.dtgrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  87. this.Number,
  88. this.Lmax,
  89. this.se,
  90. this.CI1,
  91. this.CI2});
  92. this.dtgrid.Location = new System.Drawing.Point(12, 446);
  93. this.dtgrid.Name = "dtgrid";
  94. this.dtgrid.ReadOnly = true;
  95. this.dtgrid.RowTemplate.Height = 30;
  96. this.dtgrid.Size = new System.Drawing.Size(1267, 592);
  97. this.dtgrid.TabIndex = 4;
  98. //
  99. // Number
  100. //
  101. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  102. this.Number.DefaultCellStyle = dataGridViewCellStyle1;
  103. this.Number.HeaderText = "试样编号";
  104. this.Number.Name = "Number";
  105. this.Number.ReadOnly = true;
  106. this.Number.Width = 150;
  107. //
  108. // Lmax
  109. //
  110. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  111. this.Lmax.DefaultCellStyle = dataGridViewCellStyle2;
  112. this.Lmax.HeaderText = "Lmax";
  113. this.Lmax.Name = "Lmax";
  114. this.Lmax.ReadOnly = true;
  115. this.Lmax.Width = 150;
  116. //
  117. // se
  118. //
  119. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  120. this.se.DefaultCellStyle = dataGridViewCellStyle3;
  121. this.se.HeaderText = "SE(X)";
  122. this.se.Name = "se";
  123. this.se.ReadOnly = true;
  124. this.se.Width = 150;
  125. //
  126. // CI1
  127. //
  128. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  129. this.CI1.DefaultCellStyle = dataGridViewCellStyle4;
  130. this.CI1.HeaderText = "CI1";
  131. this.CI1.Name = "CI1";
  132. this.CI1.ReadOnly = true;
  133. this.CI1.Width = 150;
  134. //
  135. // CI2
  136. //
  137. this.CI2.HeaderText = "CI2";
  138. this.CI2.Name = "CI2";
  139. this.CI2.ReadOnly = true;
  140. this.CI2.Width = 150;
  141. //
  142. // GroupLmax
  143. //
  144. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  145. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  146. this.ClientSize = new System.Drawing.Size(1294, 1062);
  147. this.Controls.Add(this.dtgrid);
  148. this.Controls.Add(this.chart1);
  149. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  150. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  151. this.MaximizeBox = false;
  152. this.Name = "GroupLmax";
  153. this.Text = "差异性分析";
  154. this.Load += new System.EventHandler(this.GroupLmax_Load);
  155. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  156. ((System.ComponentModel.ISupportInitialize)(this.dtgrid)).EndInit();
  157. this.ResumeLayout(false);
  158. }
  159. #endregion
  160. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  161. private System.Windows.Forms.DataGridView dtgrid;
  162. private System.Windows.Forms.DataGridViewTextBoxColumn Number;
  163. private System.Windows.Forms.DataGridViewTextBoxColumn Lmax;
  164. private System.Windows.Forms.DataGridViewTextBoxColumn se;
  165. private System.Windows.Forms.DataGridViewTextBoxColumn CI1;
  166. private System.Windows.Forms.DataGridViewTextBoxColumn CI2;
  167. }
  168. }