Calculation.Designer.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. namespace WindowsFormsСигаева2ИС_ПР2
  2. {
  3. partial class Calculation
  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. this.textBoxA = new System.Windows.Forms.TextBox();
  29. this.textBoxX = new System.Windows.Forms.TextBox();
  30. this.textBoxC = new System.Windows.Forms.TextBox();
  31. this.textBoxD = new System.Windows.Forms.TextBox();
  32. this.textBoxResult = new System.Windows.Forms.TextBox();
  33. this.buttonResult = new System.Windows.Forms.Button();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.SuspendLayout();
  40. //
  41. // textBoxA
  42. //
  43. this.textBoxA.Location = new System.Drawing.Point(45, 37);
  44. this.textBoxA.Name = "textBoxA";
  45. this.textBoxA.Size = new System.Drawing.Size(100, 20);
  46. this.textBoxA.TabIndex = 0;
  47. //
  48. // textBoxX
  49. //
  50. this.textBoxX.Location = new System.Drawing.Point(45, 86);
  51. this.textBoxX.Name = "textBoxX";
  52. this.textBoxX.Size = new System.Drawing.Size(100, 20);
  53. this.textBoxX.TabIndex = 1;
  54. //
  55. // textBoxC
  56. //
  57. this.textBoxC.Location = new System.Drawing.Point(45, 130);
  58. this.textBoxC.Name = "textBoxC";
  59. this.textBoxC.Size = new System.Drawing.Size(100, 20);
  60. this.textBoxC.TabIndex = 2;
  61. //
  62. // textBoxD
  63. //
  64. this.textBoxD.Location = new System.Drawing.Point(45, 178);
  65. this.textBoxD.Name = "textBoxD";
  66. this.textBoxD.Size = new System.Drawing.Size(100, 20);
  67. this.textBoxD.TabIndex = 3;
  68. //
  69. // textBoxResult
  70. //
  71. this.textBoxResult.Location = new System.Drawing.Point(45, 221);
  72. this.textBoxResult.Name = "textBoxResult";
  73. this.textBoxResult.Size = new System.Drawing.Size(100, 20);
  74. this.textBoxResult.TabIndex = 4;
  75. //
  76. // buttonResult
  77. //
  78. this.buttonResult.Location = new System.Drawing.Point(45, 284);
  79. this.buttonResult.Name = "buttonResult";
  80. this.buttonResult.Size = new System.Drawing.Size(100, 51);
  81. this.buttonResult.TabIndex = 5;
  82. this.buttonResult.Text = "Результат";
  83. this.buttonResult.UseVisualStyleBackColor = true;
  84. this.buttonResult.Click += new System.EventHandler(this.ButtonCalculation_Click);
  85. //
  86. // label1
  87. //
  88. this.label1.AutoSize = true;
  89. this.label1.Location = new System.Drawing.Point(42, 21);
  90. this.label1.Name = "label1";
  91. this.label1.Size = new System.Drawing.Size(64, 13);
  92. this.label1.TabIndex = 6;
  93. this.label1.Text = "Введите a: ";
  94. //
  95. // label2
  96. //
  97. this.label2.AutoSize = true;
  98. this.label2.Location = new System.Drawing.Point(42, 70);
  99. this.label2.Name = "label2";
  100. this.label2.Size = new System.Drawing.Size(63, 13);
  101. this.label2.TabIndex = 7;
  102. this.label2.Text = "Введите x: ";
  103. //
  104. // label3
  105. //
  106. this.label3.AutoSize = true;
  107. this.label3.Location = new System.Drawing.Point(42, 114);
  108. this.label3.Name = "label3";
  109. this.label3.Size = new System.Drawing.Size(64, 13);
  110. this.label3.TabIndex = 8;
  111. this.label3.Text = "Введите c: ";
  112. //
  113. // label4
  114. //
  115. this.label4.AutoSize = true;
  116. this.label4.Location = new System.Drawing.Point(42, 162);
  117. this.label4.Name = "label4";
  118. this.label4.Size = new System.Drawing.Size(64, 13);
  119. this.label4.TabIndex = 9;
  120. this.label4.Text = "Введите d: ";
  121. //
  122. // label5
  123. //
  124. this.label5.AutoSize = true;
  125. this.label5.Location = new System.Drawing.Point(42, 205);
  126. this.label5.Name = "label5";
  127. this.label5.Size = new System.Drawing.Size(59, 13);
  128. this.label5.TabIndex = 10;
  129. this.label5.Text = "Результат";
  130. //
  131. // Calculation
  132. //
  133. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  134. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  135. this.ClientSize = new System.Drawing.Size(908, 624);
  136. this.Controls.Add(this.label5);
  137. this.Controls.Add(this.label4);
  138. this.Controls.Add(this.label3);
  139. this.Controls.Add(this.label2);
  140. this.Controls.Add(this.label1);
  141. this.Controls.Add(this.buttonResult);
  142. this.Controls.Add(this.textBoxResult);
  143. this.Controls.Add(this.textBoxD);
  144. this.Controls.Add(this.textBoxC);
  145. this.Controls.Add(this.textBoxX);
  146. this.Controls.Add(this.textBoxA);
  147. this.Name = "Calculation";
  148. this.Text = "ПР№2 2ИС Сигаева А.А.";
  149. this.ResumeLayout(false);
  150. this.PerformLayout();
  151. }
  152. #endregion
  153. private System.Windows.Forms.TextBox textBoxA;
  154. private System.Windows.Forms.TextBox textBoxX;
  155. private System.Windows.Forms.TextBox textBoxC;
  156. private System.Windows.Forms.TextBox textBoxD;
  157. private System.Windows.Forms.TextBox textBoxResult;
  158. private System.Windows.Forms.Button buttonResult;
  159. private System.Windows.Forms.Label label1;
  160. private System.Windows.Forms.Label label2;
  161. private System.Windows.Forms.Label label3;
  162. private System.Windows.Forms.Label label4;
  163. private System.Windows.Forms.Label label5;
  164. }
  165. }