Form1.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Calculator
  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.a = new System.Windows.Forms.TextBox();
  29. this.b = new System.Windows.Forms.TextBox();
  30. this.c = new System.Windows.Forms.TextBox();
  31. this.Bsum = new System.Windows.Forms.Button();
  32. this.Bumnog = new System.Windows.Forms.Button();
  33. this.Bdel = new System.Windows.Forms.Button();
  34. this.Bstep = new System.Windows.Forms.Button();
  35. this.Bkoren = new System.Windows.Forms.Button();
  36. this.Brazn = new System.Windows.Forms.Button();
  37. this.SuspendLayout();
  38. //
  39. // a
  40. //
  41. this.a.Location = new System.Drawing.Point(12, 12);
  42. this.a.Name = "a";
  43. this.a.Size = new System.Drawing.Size(174, 20);
  44. this.a.TabIndex = 0;
  45. //
  46. // b
  47. //
  48. this.b.Location = new System.Drawing.Point(192, 12);
  49. this.b.Name = "b";
  50. this.b.Size = new System.Drawing.Size(165, 20);
  51. this.b.TabIndex = 1;
  52. //
  53. // c
  54. //
  55. this.c.Location = new System.Drawing.Point(12, 155);
  56. this.c.Name = "c";
  57. this.c.Size = new System.Drawing.Size(345, 20);
  58. this.c.TabIndex = 2;
  59. //
  60. // Bsum
  61. //
  62. this.Bsum.Location = new System.Drawing.Point(12, 47);
  63. this.Bsum.Name = "Bsum";
  64. this.Bsum.Size = new System.Drawing.Size(174, 30);
  65. this.Bsum.TabIndex = 3;
  66. this.Bsum.Text = "Сложение";
  67. this.Bsum.UseVisualStyleBackColor = true;
  68. this.Bsum.Click += new System.EventHandler(this.Bsum_Click);
  69. //
  70. // Bumnog
  71. //
  72. this.Bumnog.Location = new System.Drawing.Point(12, 83);
  73. this.Bumnog.Name = "Bumnog";
  74. this.Bumnog.Size = new System.Drawing.Size(174, 30);
  75. this.Bumnog.TabIndex = 5;
  76. this.Bumnog.Text = "Умножение";
  77. this.Bumnog.UseVisualStyleBackColor = true;
  78. this.Bumnog.Click += new System.EventHandler(this.Bumnog_Click);
  79. //
  80. // Bdel
  81. //
  82. this.Bdel.Location = new System.Drawing.Point(192, 83);
  83. this.Bdel.Name = "Bdel";
  84. this.Bdel.Size = new System.Drawing.Size(165, 30);
  85. this.Bdel.TabIndex = 6;
  86. this.Bdel.Text = "Деление";
  87. this.Bdel.UseVisualStyleBackColor = true;
  88. this.Bdel.Click += new System.EventHandler(this.Bdel_Click);
  89. //
  90. // Bstep
  91. //
  92. this.Bstep.Location = new System.Drawing.Point(12, 119);
  93. this.Bstep.Name = "Bstep";
  94. this.Bstep.Size = new System.Drawing.Size(174, 30);
  95. this.Bstep.TabIndex = 7;
  96. this.Bstep.Text = "В степень";
  97. this.Bstep.UseVisualStyleBackColor = true;
  98. this.Bstep.Click += new System.EventHandler(this.Bstep_Click);
  99. //
  100. // Bkoren
  101. //
  102. this.Bkoren.Location = new System.Drawing.Point(192, 119);
  103. this.Bkoren.Name = "Bkoren";
  104. this.Bkoren.Size = new System.Drawing.Size(165, 30);
  105. this.Bkoren.TabIndex = 8;
  106. this.Bkoren.Text = "Корень";
  107. this.Bkoren.UseVisualStyleBackColor = true;
  108. this.Bkoren.Click += new System.EventHandler(this.Bkoren_Click);
  109. //
  110. // Brazn
  111. //
  112. this.Brazn.Location = new System.Drawing.Point(192, 47);
  113. this.Brazn.Name = "Brazn";
  114. this.Brazn.Size = new System.Drawing.Size(165, 30);
  115. this.Brazn.TabIndex = 9;
  116. this.Brazn.Text = "Вычитание";
  117. this.Brazn.UseVisualStyleBackColor = true;
  118. this.Brazn.Click += new System.EventHandler(this.Brazn_Click_1);
  119. //
  120. // Calculator
  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(385, 202);
  125. this.Controls.Add(this.Brazn);
  126. this.Controls.Add(this.Bkoren);
  127. this.Controls.Add(this.Bstep);
  128. this.Controls.Add(this.Bdel);
  129. this.Controls.Add(this.Bumnog);
  130. this.Controls.Add(this.Bsum);
  131. this.Controls.Add(this.c);
  132. this.Controls.Add(this.b);
  133. this.Controls.Add(this.a);
  134. this.Name = "Calculator";
  135. this.Text = "Form1";
  136. this.ResumeLayout(false);
  137. this.PerformLayout();
  138. }
  139. #endregion
  140. private System.Windows.Forms.TextBox a;
  141. private System.Windows.Forms.TextBox b;
  142. private System.Windows.Forms.TextBox c;
  143. private System.Windows.Forms.Button Bsum;
  144. private System.Windows.Forms.Button Bumnog;
  145. private System.Windows.Forms.Button Bdel;
  146. private System.Windows.Forms.Button Bstep;
  147. private System.Windows.Forms.Button Bkoren;
  148. private System.Windows.Forms.Button Brazn;
  149. }
  150. }