Form1.Designer.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. namespace KholinKalkulator1
  2. {
  3. partial class Form1
  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.textBox1 = new System.Windows.Forms.TextBox();
  29. this.textBox2 = new System.Windows.Forms.TextBox();
  30. this.textBox3 = 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.SuspendLayout();
  38. //
  39. // textBox1
  40. //
  41. this.textBox1.Location = new System.Drawing.Point(35, 79);
  42. this.textBox1.Name = "textBox1";
  43. this.textBox1.Size = new System.Drawing.Size(100, 20);
  44. this.textBox1.TabIndex = 0;
  45. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  46. //
  47. // textBox2
  48. //
  49. this.textBox2.Location = new System.Drawing.Point(313, 79);
  50. this.textBox2.Name = "textBox2";
  51. this.textBox2.Size = new System.Drawing.Size(100, 20);
  52. this.textBox2.TabIndex = 1;
  53. this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
  54. //
  55. // textBox3
  56. //
  57. this.textBox3.Location = new System.Drawing.Point(88, 320);
  58. this.textBox3.Name = "textBox3";
  59. this.textBox3.Size = new System.Drawing.Size(300, 20);
  60. this.textBox3.TabIndex = 2;
  61. this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
  62. //
  63. // button1
  64. //
  65. this.button1.Location = new System.Drawing.Point(88, 164);
  66. this.button1.Name = "button1";
  67. this.button1.Size = new System.Drawing.Size(75, 23);
  68. this.button1.TabIndex = 3;
  69. this.button1.Text = "Сложение";
  70. this.button1.UseVisualStyleBackColor = true;
  71. this.button1.Click += new System.EventHandler(this.button1_Click);
  72. //
  73. // button2
  74. //
  75. this.button2.Location = new System.Drawing.Point(88, 211);
  76. this.button2.Name = "button2";
  77. this.button2.Size = new System.Drawing.Size(75, 23);
  78. this.button2.TabIndex = 4;
  79. this.button2.Text = "Умножение";
  80. this.button2.UseVisualStyleBackColor = true;
  81. this.button2.Click += new System.EventHandler(this.button2_Click);
  82. //
  83. // button3
  84. //
  85. this.button3.Location = new System.Drawing.Point(88, 258);
  86. this.button3.Name = "button3";
  87. this.button3.Size = new System.Drawing.Size(75, 23);
  88. this.button3.TabIndex = 5;
  89. this.button3.Text = "В степень";
  90. this.button3.UseVisualStyleBackColor = true;
  91. this.button3.Click += new System.EventHandler(this.button3_Click);
  92. //
  93. // button4
  94. //
  95. this.button4.Location = new System.Drawing.Point(313, 164);
  96. this.button4.Name = "button4";
  97. this.button4.Size = new System.Drawing.Size(75, 23);
  98. this.button4.TabIndex = 6;
  99. this.button4.Text = "Вычитание";
  100. this.button4.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
  101. this.button4.UseVisualStyleBackColor = true;
  102. this.button4.Click += new System.EventHandler(this.button4_Click);
  103. //
  104. // button5
  105. //
  106. this.button5.Location = new System.Drawing.Point(313, 211);
  107. this.button5.Name = "button5";
  108. this.button5.Size = new System.Drawing.Size(75, 23);
  109. this.button5.TabIndex = 7;
  110. this.button5.Text = "Деление";
  111. this.button5.UseVisualStyleBackColor = true;
  112. this.button5.Click += new System.EventHandler(this.button5_Click);
  113. //
  114. // button6
  115. //
  116. this.button6.Location = new System.Drawing.Point(313, 258);
  117. this.button6.Name = "button6";
  118. this.button6.Size = new System.Drawing.Size(75, 23);
  119. this.button6.TabIndex = 8;
  120. this.button6.Text = "Корень";
  121. this.button6.UseVisualStyleBackColor = true;
  122. this.button6.Click += new System.EventHandler(this.button6_Click);
  123. //
  124. // Form1
  125. //
  126. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  127. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  128. this.ClientSize = new System.Drawing.Size(470, 368);
  129. this.Controls.Add(this.button6);
  130. this.Controls.Add(this.button5);
  131. this.Controls.Add(this.button4);
  132. this.Controls.Add(this.button3);
  133. this.Controls.Add(this.button2);
  134. this.Controls.Add(this.button1);
  135. this.Controls.Add(this.textBox3);
  136. this.Controls.Add(this.textBox2);
  137. this.Controls.Add(this.textBox1);
  138. this.Name = "Form1";
  139. this.Text = "Холин Калькулятор";
  140. this.Load += new System.EventHandler(this.Form1_Load);
  141. this.ResumeLayout(false);
  142. this.PerformLayout();
  143. }
  144. #endregion
  145. private System.Windows.Forms.TextBox textBox1;
  146. private System.Windows.Forms.TextBox textBox2;
  147. private System.Windows.Forms.TextBox textBox3;
  148. private System.Windows.Forms.Button button1;
  149. private System.Windows.Forms.Button button2;
  150. private System.Windows.Forms.Button button3;
  151. private System.Windows.Forms.Button button4;
  152. private System.Windows.Forms.Button button5;
  153. private System.Windows.Forms.Button button6;
  154. }
  155. }