MainForm.Designer.cs 6.6 KB

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