Form1.Designer.cs 6.6 KB

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