CyclesMain.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. 
  2. namespace FormCycles
  3. {
  4. partial class Main
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lblInputX0 = new System.Windows.Forms.Label();
  30. this.lblInputXk = new System.Windows.Forms.Label();
  31. this.lblInputDx = new System.Windows.Forms.Label();
  32. this.lblInputB = new System.Windows.Forms.Label();
  33. this.tbInputX0 = new System.Windows.Forms.TextBox();
  34. this.tbInputXk = new System.Windows.Forms.TextBox();
  35. this.tbInputDx = new System.Windows.Forms.TextBox();
  36. this.tbInputB = new System.Windows.Forms.TextBox();
  37. this.tbOutput = new System.Windows.Forms.TextBox();
  38. this.btnCalculate = new System.Windows.Forms.Button();
  39. this.SuspendLayout();
  40. //
  41. // lblInputX0
  42. //
  43. this.lblInputX0.AutoSize = true;
  44. this.lblInputX0.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  45. this.lblInputX0.Location = new System.Drawing.Point(13, 9);
  46. this.lblInputX0.Name = "lblInputX0";
  47. this.lblInputX0.Size = new System.Drawing.Size(43, 21);
  48. this.lblInputX0.TabIndex = 0;
  49. this.lblInputX0.Text = "X0 =";
  50. //
  51. // lblInputXk
  52. //
  53. this.lblInputXk.AutoSize = true;
  54. this.lblInputXk.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  55. this.lblInputXk.Location = new System.Drawing.Point(13, 43);
  56. this.lblInputXk.Name = "lblInputXk";
  57. this.lblInputXk.Size = new System.Drawing.Size(42, 21);
  58. this.lblInputXk.TabIndex = 1;
  59. this.lblInputXk.Text = "Xk =";
  60. //
  61. // lblInputDx
  62. //
  63. this.lblInputDx.AutoSize = true;
  64. this.lblInputDx.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  65. this.lblInputDx.Location = new System.Drawing.Point(12, 78);
  66. this.lblInputDx.Name = "lblInputDx";
  67. this.lblInputDx.Size = new System.Drawing.Size(43, 21);
  68. this.lblInputDx.TabIndex = 2;
  69. this.lblInputDx.Text = "Dx =";
  70. //
  71. // lblInputB
  72. //
  73. this.lblInputB.AutoSize = true;
  74. this.lblInputB.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  75. this.lblInputB.Location = new System.Drawing.Point(12, 113);
  76. this.lblInputB.Name = "lblInputB";
  77. this.lblInputB.Size = new System.Drawing.Size(34, 21);
  78. this.lblInputB.TabIndex = 3;
  79. this.lblInputB.Text = "B =";
  80. //
  81. // tbInputX0
  82. //
  83. this.tbInputX0.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  84. this.tbInputX0.Location = new System.Drawing.Point(61, 6);
  85. this.tbInputX0.Name = "tbInputX0";
  86. this.tbInputX0.Size = new System.Drawing.Size(138, 29);
  87. this.tbInputX0.TabIndex = 4;
  88. //
  89. // tbInputXk
  90. //
  91. this.tbInputXk.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  92. this.tbInputXk.Location = new System.Drawing.Point(61, 40);
  93. this.tbInputXk.Name = "tbInputXk";
  94. this.tbInputXk.Size = new System.Drawing.Size(138, 29);
  95. this.tbInputXk.TabIndex = 5;
  96. //
  97. // tbInputDx
  98. //
  99. this.tbInputDx.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  100. this.tbInputDx.Location = new System.Drawing.Point(61, 75);
  101. this.tbInputDx.Name = "tbInputDx";
  102. this.tbInputDx.Size = new System.Drawing.Size(138, 29);
  103. this.tbInputDx.TabIndex = 6;
  104. //
  105. // tbInputB
  106. //
  107. this.tbInputB.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  108. this.tbInputB.Location = new System.Drawing.Point(61, 110);
  109. this.tbInputB.Name = "tbInputB";
  110. this.tbInputB.Size = new System.Drawing.Size(138, 29);
  111. this.tbInputB.TabIndex = 7;
  112. //
  113. // tbOutput
  114. //
  115. this.tbOutput.Location = new System.Drawing.Point(12, 155);
  116. this.tbOutput.Multiline = true;
  117. this.tbOutput.Name = "tbOutput";
  118. this.tbOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  119. this.tbOutput.Size = new System.Drawing.Size(401, 152);
  120. this.tbOutput.TabIndex = 8;
  121. //
  122. // btnCalculate
  123. //
  124. this.btnCalculate.Location = new System.Drawing.Point(149, 322);
  125. this.btnCalculate.Name = "btnCalculate";
  126. this.btnCalculate.Size = new System.Drawing.Size(127, 36);
  127. this.btnCalculate.TabIndex = 9;
  128. this.btnCalculate.Text = "Вычислить";
  129. this.btnCalculate.UseVisualStyleBackColor = true;
  130. this.btnCalculate.Click += new System.EventHandler(this.btnCalculateClick);
  131. //
  132. // Main
  133. //
  134. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  135. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  136. this.ClientSize = new System.Drawing.Size(425, 370);
  137. this.Controls.Add(this.btnCalculate);
  138. this.Controls.Add(this.tbOutput);
  139. this.Controls.Add(this.tbInputB);
  140. this.Controls.Add(this.tbInputDx);
  141. this.Controls.Add(this.tbInputXk);
  142. this.Controls.Add(this.tbInputX0);
  143. this.Controls.Add(this.lblInputB);
  144. this.Controls.Add(this.lblInputDx);
  145. this.Controls.Add(this.lblInputXk);
  146. this.Controls.Add(this.lblInputX0);
  147. this.Name = "Main";
  148. this.Text = "Циклы";
  149. this.Load += new System.EventHandler(this.Main_Load);
  150. this.ResumeLayout(false);
  151. this.PerformLayout();
  152. }
  153. #endregion
  154. private System.Windows.Forms.Label lblInputX0;
  155. private System.Windows.Forms.Label lblInputXk;
  156. private System.Windows.Forms.Label lblInputDx;
  157. private System.Windows.Forms.Label lblInputB;
  158. private System.Windows.Forms.TextBox tbInputX0;
  159. private System.Windows.Forms.TextBox tbInputXk;
  160. private System.Windows.Forms.TextBox tbInputDx;
  161. private System.Windows.Forms.TextBox tbInputB;
  162. private System.Windows.Forms.TextBox tbOutput;
  163. private System.Windows.Forms.Button btnCalculate;
  164. }
  165. }