Form1.Designer.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. 
  2. namespace dyakonovcalc
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.textBox2 = new System.Windows.Forms.TextBox();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. this.button4 = new System.Windows.Forms.Button();
  35. this.button5 = new System.Windows.Forms.Button();
  36. this.button6 = new System.Windows.Forms.Button();
  37. this.textBox3 = new System.Windows.Forms.TextBox();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.SuspendLayout();
  40. //
  41. // textBox1
  42. //
  43. this.textBox1.Location = new System.Drawing.Point(262, 66);
  44. this.textBox1.Name = "textBox1";
  45. this.textBox1.Size = new System.Drawing.Size(100, 20);
  46. this.textBox1.TabIndex = 0;
  47. //
  48. // textBox2
  49. //
  50. this.textBox2.Location = new System.Drawing.Point(394, 66);
  51. this.textBox2.Name = "textBox2";
  52. this.textBox2.Size = new System.Drawing.Size(100, 20);
  53. this.textBox2.TabIndex = 0;
  54. //
  55. // button1
  56. //
  57. this.button1.Location = new System.Drawing.Point(287, 134);
  58. this.button1.Name = "button1";
  59. this.button1.Size = new System.Drawing.Size(75, 23);
  60. this.button1.TabIndex = 1;
  61. this.button1.Text = "сложение";
  62. this.button1.UseVisualStyleBackColor = true;
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. //
  65. // button2
  66. //
  67. this.button2.Location = new System.Drawing.Point(394, 134);
  68. this.button2.Name = "button2";
  69. this.button2.Size = new System.Drawing.Size(75, 23);
  70. this.button2.TabIndex = 1;
  71. this.button2.Text = "вычитание";
  72. this.button2.UseVisualStyleBackColor = true;
  73. this.button2.Click += new System.EventHandler(this.button2_Click);
  74. //
  75. // button3
  76. //
  77. this.button3.Location = new System.Drawing.Point(287, 172);
  78. this.button3.Name = "button3";
  79. this.button3.Size = new System.Drawing.Size(75, 23);
  80. this.button3.TabIndex = 1;
  81. this.button3.Text = "умножение";
  82. this.button3.UseVisualStyleBackColor = true;
  83. this.button3.Click += new System.EventHandler(this.button3_Click);
  84. //
  85. // button4
  86. //
  87. this.button4.Location = new System.Drawing.Point(394, 172);
  88. this.button4.Name = "button4";
  89. this.button4.Size = new System.Drawing.Size(75, 23);
  90. this.button4.TabIndex = 1;
  91. this.button4.Text = "деление";
  92. this.button4.UseVisualStyleBackColor = true;
  93. this.button4.Click += new System.EventHandler(this.button4_Click);
  94. //
  95. // button5
  96. //
  97. this.button5.Location = new System.Drawing.Point(287, 213);
  98. this.button5.Name = "button5";
  99. this.button5.Size = new System.Drawing.Size(75, 23);
  100. this.button5.TabIndex = 1;
  101. this.button5.Text = "в степень";
  102. this.button5.UseVisualStyleBackColor = true;
  103. this.button5.Click += new System.EventHandler(this.button5_Click);
  104. //
  105. // button6
  106. //
  107. this.button6.Location = new System.Drawing.Point(394, 213);
  108. this.button6.Name = "button6";
  109. this.button6.Size = new System.Drawing.Size(75, 23);
  110. this.button6.TabIndex = 1;
  111. this.button6.Text = "корень";
  112. this.button6.UseVisualStyleBackColor = true;
  113. this.button6.Click += new System.EventHandler(this.button6_Click);
  114. //
  115. // textBox3
  116. //
  117. this.textBox3.Location = new System.Drawing.Point(262, 278);
  118. this.textBox3.Name = "textBox3";
  119. this.textBox3.Size = new System.Drawing.Size(232, 20);
  120. this.textBox3.TabIndex = 0;
  121. //
  122. // label1
  123. //
  124. this.label1.AutoSize = true;
  125. this.label1.Location = new System.Drawing.Point(352, 262);
  126. this.label1.Name = "label1";
  127. this.label1.Size = new System.Drawing.Size(43, 13);
  128. this.label1.TabIndex = 2;
  129. this.label1.Text = "ОТВЕТ";
  130. //
  131. // Form1
  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(800, 450);
  136. this.Controls.Add(this.label1);
  137. this.Controls.Add(this.button6);
  138. this.Controls.Add(this.button5);
  139. this.Controls.Add(this.button4);
  140. this.Controls.Add(this.button3);
  141. this.Controls.Add(this.button2);
  142. this.Controls.Add(this.button1);
  143. this.Controls.Add(this.textBox3);
  144. this.Controls.Add(this.textBox2);
  145. this.Controls.Add(this.textBox1);
  146. this.Name = "Form1";
  147. this.Text = "Form1";
  148. this.ResumeLayout(false);
  149. this.PerformLayout();
  150. }
  151. #endregion
  152. private System.Windows.Forms.TextBox textBox1;
  153. private System.Windows.Forms.TextBox textBox2;
  154. private System.Windows.Forms.Button button1;
  155. private System.Windows.Forms.Button button2;
  156. private System.Windows.Forms.Button button3;
  157. private System.Windows.Forms.Button button4;
  158. private System.Windows.Forms.Button button5;
  159. private System.Windows.Forms.Button button6;
  160. private System.Windows.Forms.TextBox textBox3;
  161. private System.Windows.Forms.Label label1;
  162. }
  163. }