MainForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. namespace WinForms_2
  2. {
  3. partial class MainForm
  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.lblAnswer = new System.Windows.Forms.Label();
  29. this.lblX = new System.Windows.Forms.Label();
  30. this.lblY = new System.Windows.Forms.Label();
  31. this.lblZ = new System.Windows.Forms.Label();
  32. this.tbInputX = new System.Windows.Forms.TextBox();
  33. this.tbInputY = new System.Windows.Forms.TextBox();
  34. this.tbInputZ = new System.Windows.Forms.TextBox();
  35. this.btnCalculate = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // lblAnswer
  39. //
  40. this.lblAnswer.AutoSize = true;
  41. this.lblAnswer.Font = new System.Drawing.Font("Segoe UI Semibold", 36F, System.Drawing.FontStyle.Bold);
  42. this.lblAnswer.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
  43. this.lblAnswer.Location = new System.Drawing.Point(36, 453);
  44. this.lblAnswer.Name = "lblAnswer";
  45. this.lblAnswer.Size = new System.Drawing.Size(374, 65);
  46. this.lblAnswer.TabIndex = 6;
  47. this.lblAnswer.Text = "Область ответа";
  48. //
  49. // lblX
  50. //
  51. this.lblX.AutoSize = true;
  52. this.lblX.Font = new System.Drawing.Font("Segoe UI Semibold", 24F, System.Drawing.FontStyle.Bold);
  53. this.lblX.Location = new System.Drawing.Point(109, 36);
  54. this.lblX.Name = "lblX";
  55. this.lblX.Size = new System.Drawing.Size(40, 45);
  56. this.lblX.TabIndex = 3;
  57. this.lblX.Text = "X";
  58. //
  59. // lblY
  60. //
  61. this.lblY.AutoSize = true;
  62. this.lblY.Font = new System.Drawing.Font("Segoe UI Semibold", 24F, System.Drawing.FontStyle.Bold);
  63. this.lblY.Location = new System.Drawing.Point(356, 36);
  64. this.lblY.Name = "lblY";
  65. this.lblY.Size = new System.Drawing.Size(38, 45);
  66. this.lblY.TabIndex = 4;
  67. this.lblY.Text = "Y";
  68. //
  69. // lblZ
  70. //
  71. this.lblZ.AutoSize = true;
  72. this.lblZ.Font = new System.Drawing.Font("Segoe UI Semibold", 24F, System.Drawing.FontStyle.Bold);
  73. this.lblZ.Location = new System.Drawing.Point(613, 36);
  74. this.lblZ.Name = "lblZ";
  75. this.lblZ.Size = new System.Drawing.Size(39, 45);
  76. this.lblZ.TabIndex = 5;
  77. this.lblZ.Text = "Z";
  78. //
  79. // tbInputX
  80. //
  81. this.tbInputX.Font = new System.Drawing.Font("Segoe UI", 15.75F);
  82. this.tbInputX.Location = new System.Drawing.Point(55, 84);
  83. this.tbInputX.Name = "tbInputX";
  84. this.tbInputX.Size = new System.Drawing.Size(177, 35);
  85. this.tbInputX.TabIndex = 0;
  86. //
  87. // tbInputY
  88. //
  89. this.tbInputY.Font = new System.Drawing.Font("Segoe UI", 15.75F);
  90. this.tbInputY.Location = new System.Drawing.Point(284, 84);
  91. this.tbInputY.Name = "tbInputY";
  92. this.tbInputY.Size = new System.Drawing.Size(177, 35);
  93. this.tbInputY.TabIndex = 1;
  94. //
  95. // tbInputZ
  96. //
  97. this.tbInputZ.Font = new System.Drawing.Font("Segoe UI", 15.75F);
  98. this.tbInputZ.Location = new System.Drawing.Point(543, 84);
  99. this.tbInputZ.Name = "tbInputZ";
  100. this.tbInputZ.Size = new System.Drawing.Size(177, 35);
  101. this.tbInputZ.TabIndex = 2;
  102. //
  103. // btnCalculate
  104. //
  105. this.btnCalculate.Font = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  106. this.btnCalculate.Location = new System.Drawing.Point(284, 253);
  107. this.btnCalculate.Name = "btnCalculate";
  108. this.btnCalculate.Size = new System.Drawing.Size(177, 64);
  109. this.btnCalculate.TabIndex = 7;
  110. this.btnCalculate.Text = "Вычислить!";
  111. this.btnCalculate.UseVisualStyleBackColor = true;
  112. this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
  113. //
  114. // MainForm
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(784, 561);
  119. this.Controls.Add(this.btnCalculate);
  120. this.Controls.Add(this.tbInputZ);
  121. this.Controls.Add(this.tbInputY);
  122. this.Controls.Add(this.tbInputX);
  123. this.Controls.Add(this.lblZ);
  124. this.Controls.Add(this.lblY);
  125. this.Controls.Add(this.lblX);
  126. this.Controls.Add(this.lblAnswer);
  127. this.Name = "MainForm";
  128. this.Text = "Калькулятор";
  129. this.Load += new System.EventHandler(this.MainForm_Load);
  130. this.ResumeLayout(false);
  131. this.PerformLayout();
  132. }
  133. #endregion
  134. private System.Windows.Forms.Label lblAnswer;
  135. private System.Windows.Forms.Label lblX;
  136. private System.Windows.Forms.Label lblY;
  137. private System.Windows.Forms.Label lblZ;
  138. private System.Windows.Forms.TextBox tbInputX;
  139. private System.Windows.Forms.TextBox tbInputY;
  140. private System.Windows.Forms.TextBox tbInputZ;
  141. private System.Windows.Forms.Button btnCalculate;
  142. }
  143. }