FormMain.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. namespace WindowsFormsAppUP02._02Alekseev7
  2. {
  3. partial class FormMain
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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 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. this.chtGrafic = new System.Windows.Forms.DataVisualization.Charting.Chart();
  32. this.tbValueXMin = new System.Windows.Forms.TextBox();
  33. this.tbValueXMax = new System.Windows.Forms.TextBox();
  34. this.tbValueStep = new System.Windows.Forms.TextBox();
  35. this.lbValueXMIn = new System.Windows.Forms.Label();
  36. this.lbValueXMax = new System.Windows.Forms.Label();
  37. this.lbValueStep = new System.Windows.Forms.Label();
  38. this.btnResultValue = new System.Windows.Forms.Button();
  39. this.tbValueA = new System.Windows.Forms.TextBox();
  40. this.tbValueB = new System.Windows.Forms.TextBox();
  41. this.tbValueC = new System.Windows.Forms.TextBox();
  42. this.lbValueA = new System.Windows.Forms.Label();
  43. this.lbValueB = new System.Windows.Forms.Label();
  44. this.lbValueC = new System.Windows.Forms.Label();
  45. ((System.ComponentModel.ISupportInitialize)(this.chtGrafic)).BeginInit();
  46. this.SuspendLayout();
  47. //
  48. // chtGrafic
  49. //
  50. chartArea1.Name = "ChartArea1";
  51. this.chtGrafic.ChartAreas.Add(chartArea1);
  52. legend1.Name = "Legend1";
  53. this.chtGrafic.Legends.Add(legend1);
  54. this.chtGrafic.Location = new System.Drawing.Point(227, 145);
  55. this.chtGrafic.Name = "chtGrafic";
  56. series1.BorderWidth = 3;
  57. series1.ChartArea = "ChartArea1";
  58. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  59. series1.Color = System.Drawing.Color.Violet;
  60. series1.Legend = "Legend1";
  61. series1.Name = "Табулирование функции";
  62. this.chtGrafic.Series.Add(series1);
  63. this.chtGrafic.Size = new System.Drawing.Size(721, 300);
  64. this.chtGrafic.TabIndex = 0;
  65. this.chtGrafic.Text = "chart1";
  66. //
  67. // tbValueXMin
  68. //
  69. this.tbValueXMin.Location = new System.Drawing.Point(249, 488);
  70. this.tbValueXMin.Name = "tbValueXMin";
  71. this.tbValueXMin.Size = new System.Drawing.Size(100, 20);
  72. this.tbValueXMin.TabIndex = 1;
  73. //
  74. // tbValueXMax
  75. //
  76. this.tbValueXMax.Location = new System.Drawing.Point(424, 487);
  77. this.tbValueXMax.Name = "tbValueXMax";
  78. this.tbValueXMax.Size = new System.Drawing.Size(100, 20);
  79. this.tbValueXMax.TabIndex = 2;
  80. //
  81. // tbValueStep
  82. //
  83. this.tbValueStep.Location = new System.Drawing.Point(590, 487);
  84. this.tbValueStep.Name = "tbValueStep";
  85. this.tbValueStep.Size = new System.Drawing.Size(100, 20);
  86. this.tbValueStep.TabIndex = 3;
  87. //
  88. // lbValueXMIn
  89. //
  90. this.lbValueXMIn.AutoSize = true;
  91. this.lbValueXMIn.Location = new System.Drawing.Point(249, 469);
  92. this.lbValueXMIn.Name = "lbValueXMIn";
  93. this.lbValueXMIn.Size = new System.Drawing.Size(30, 13);
  94. this.lbValueXMIn.TabIndex = 4;
  95. this.lbValueXMIn.Text = "Xmin";
  96. //
  97. // lbValueXMax
  98. //
  99. this.lbValueXMax.AutoSize = true;
  100. this.lbValueXMax.Location = new System.Drawing.Point(424, 469);
  101. this.lbValueXMax.Name = "lbValueXMax";
  102. this.lbValueXMax.Size = new System.Drawing.Size(33, 13);
  103. this.lbValueXMax.TabIndex = 5;
  104. this.lbValueXMax.Text = "Xmax";
  105. //
  106. // lbValueStep
  107. //
  108. this.lbValueStep.AutoSize = true;
  109. this.lbValueStep.Location = new System.Drawing.Point(590, 468);
  110. this.lbValueStep.Name = "lbValueStep";
  111. this.lbValueStep.Size = new System.Drawing.Size(27, 13);
  112. this.lbValueStep.TabIndex = 6;
  113. this.lbValueStep.Text = "Шаг";
  114. //
  115. // btnResultValue
  116. //
  117. this.btnResultValue.Location = new System.Drawing.Point(729, 487);
  118. this.btnResultValue.Name = "btnResultValue";
  119. this.btnResultValue.Size = new System.Drawing.Size(75, 23);
  120. this.btnResultValue.TabIndex = 7;
  121. this.btnResultValue.Text = "Расчет!";
  122. this.btnResultValue.UseVisualStyleBackColor = true;
  123. this.btnResultValue.Click += new System.EventHandler(this.btnResultValueClick);
  124. //
  125. // tbValueA
  126. //
  127. this.tbValueA.Location = new System.Drawing.Point(83, 163);
  128. this.tbValueA.Name = "tbValueA";
  129. this.tbValueA.Size = new System.Drawing.Size(100, 20);
  130. this.tbValueA.TabIndex = 8;
  131. //
  132. // tbValueB
  133. //
  134. this.tbValueB.Location = new System.Drawing.Point(83, 203);
  135. this.tbValueB.Name = "tbValueB";
  136. this.tbValueB.Size = new System.Drawing.Size(100, 20);
  137. this.tbValueB.TabIndex = 9;
  138. //
  139. // tbValueC
  140. //
  141. this.tbValueC.Location = new System.Drawing.Point(83, 245);
  142. this.tbValueC.Name = "tbValueC";
  143. this.tbValueC.Size = new System.Drawing.Size(100, 20);
  144. this.tbValueC.TabIndex = 10;
  145. //
  146. // lbValueA
  147. //
  148. this.lbValueA.AutoSize = true;
  149. this.lbValueA.Location = new System.Drawing.Point(51, 166);
  150. this.lbValueA.Name = "lbValueA";
  151. this.lbValueA.Size = new System.Drawing.Size(26, 13);
  152. this.lbValueA.TabIndex = 11;
  153. this.lbValueA.Text = "А = ";
  154. //
  155. // lbValueB
  156. //
  157. this.lbValueB.AutoSize = true;
  158. this.lbValueB.Location = new System.Drawing.Point(51, 206);
  159. this.lbValueB.Name = "lbValueB";
  160. this.lbValueB.Size = new System.Drawing.Size(26, 13);
  161. this.lbValueB.TabIndex = 12;
  162. this.lbValueB.Text = "B = ";
  163. //
  164. // lbValueC
  165. //
  166. this.lbValueC.AutoSize = true;
  167. this.lbValueC.Location = new System.Drawing.Point(51, 248);
  168. this.lbValueC.Name = "lbValueC";
  169. this.lbValueC.Size = new System.Drawing.Size(26, 13);
  170. this.lbValueC.TabIndex = 13;
  171. this.lbValueC.Text = "C = ";
  172. //
  173. // FormMain
  174. //
  175. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  176. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  177. this.ClientSize = new System.Drawing.Size(1052, 612);
  178. this.Controls.Add(this.lbValueC);
  179. this.Controls.Add(this.lbValueB);
  180. this.Controls.Add(this.lbValueA);
  181. this.Controls.Add(this.tbValueC);
  182. this.Controls.Add(this.tbValueB);
  183. this.Controls.Add(this.tbValueA);
  184. this.Controls.Add(this.btnResultValue);
  185. this.Controls.Add(this.lbValueStep);
  186. this.Controls.Add(this.lbValueXMax);
  187. this.Controls.Add(this.lbValueXMIn);
  188. this.Controls.Add(this.tbValueStep);
  189. this.Controls.Add(this.tbValueXMax);
  190. this.Controls.Add(this.tbValueXMin);
  191. this.Controls.Add(this.chtGrafic);
  192. this.Name = "FormMain";
  193. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  194. this.Text = "Построение графика функций";
  195. this.Load += new System.EventHandler(this.FormMain_Load);
  196. ((System.ComponentModel.ISupportInitialize)(this.chtGrafic)).EndInit();
  197. this.ResumeLayout(false);
  198. this.PerformLayout();
  199. }
  200. #endregion
  201. private System.Windows.Forms.DataVisualization.Charting.Chart chtGrafic;
  202. private System.Windows.Forms.TextBox tbValueXMin;
  203. private System.Windows.Forms.TextBox tbValueXMax;
  204. private System.Windows.Forms.TextBox tbValueStep;
  205. private System.Windows.Forms.Label lbValueXMIn;
  206. private System.Windows.Forms.Label lbValueXMax;
  207. private System.Windows.Forms.Label lbValueStep;
  208. private System.Windows.Forms.Button btnResultValue;
  209. private System.Windows.Forms.TextBox tbValueA;
  210. private System.Windows.Forms.TextBox tbValueB;
  211. private System.Windows.Forms.TextBox tbValueC;
  212. private System.Windows.Forms.Label lbValueA;
  213. private System.Windows.Forms.Label lbValueB;
  214. private System.Windows.Forms.Label lbValueC;
  215. }
  216. }