CalculatorMain.Designer.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. 
  2. namespace RadioCalculator
  3. {
  4. partial class CalculatorMain
  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.grbSelectFunction = new System.Windows.Forms.GroupBox();
  30. this.rbFunctionEPow = new System.Windows.Forms.RadioButton();
  31. this.rbFunctionPow2 = new System.Windows.Forms.RadioButton();
  32. this.rbFunctionSh = new System.Windows.Forms.RadioButton();
  33. this.lblX = new System.Windows.Forms.Label();
  34. this.lblY = new System.Windows.Forms.Label();
  35. this.lblZ = new System.Windows.Forms.Label();
  36. this.tbInputX = new System.Windows.Forms.TextBox();
  37. this.tbInputY = new System.Windows.Forms.TextBox();
  38. this.tbInputZ = new System.Windows.Forms.TextBox();
  39. this.lblAnswer = new System.Windows.Forms.Label();
  40. this.btnCalculate = new System.Windows.Forms.Button();
  41. this.grbSelectFunction.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // grbSelectFunction
  45. //
  46. this.grbSelectFunction.Controls.Add(this.rbFunctionEPow);
  47. this.grbSelectFunction.Controls.Add(this.rbFunctionPow2);
  48. this.grbSelectFunction.Controls.Add(this.rbFunctionSh);
  49. this.grbSelectFunction.Location = new System.Drawing.Point(12, 12);
  50. this.grbSelectFunction.Name = "grbSelectFunction";
  51. this.grbSelectFunction.Size = new System.Drawing.Size(116, 99);
  52. this.grbSelectFunction.TabIndex = 0;
  53. this.grbSelectFunction.TabStop = false;
  54. this.grbSelectFunction.Text = "Функция";
  55. //
  56. // rbFunctionEPow
  57. //
  58. this.rbFunctionEPow.AutoSize = true;
  59. this.rbFunctionEPow.Location = new System.Drawing.Point(6, 72);
  60. this.rbFunctionEPow.Name = "rbFunctionEPow";
  61. this.rbFunctionEPow.Size = new System.Drawing.Size(35, 19);
  62. this.rbFunctionEPow.TabIndex = 2;
  63. this.rbFunctionEPow.TabStop = true;
  64. this.rbFunctionEPow.Text = "e˟";
  65. this.rbFunctionEPow.UseVisualStyleBackColor = true;
  66. //
  67. // rbFunctionPow2
  68. //
  69. this.rbFunctionPow2.AutoSize = true;
  70. this.rbFunctionPow2.Location = new System.Drawing.Point(6, 47);
  71. this.rbFunctionPow2.Name = "rbFunctionPow2";
  72. this.rbFunctionPow2.Size = new System.Drawing.Size(35, 19);
  73. this.rbFunctionPow2.TabIndex = 1;
  74. this.rbFunctionPow2.TabStop = true;
  75. this.rbFunctionPow2.Text = "x²";
  76. this.rbFunctionPow2.UseMnemonic = false;
  77. this.rbFunctionPow2.UseVisualStyleBackColor = true;
  78. //
  79. // rbFunctionSh
  80. //
  81. this.rbFunctionSh.AutoSize = true;
  82. this.rbFunctionSh.Location = new System.Drawing.Point(6, 22);
  83. this.rbFunctionSh.Name = "rbFunctionSh";
  84. this.rbFunctionSh.Size = new System.Drawing.Size(51, 19);
  85. this.rbFunctionSh.TabIndex = 0;
  86. this.rbFunctionSh.TabStop = true;
  87. this.rbFunctionSh.Text = "sh(x)";
  88. this.rbFunctionSh.UseVisualStyleBackColor = true;
  89. //
  90. // lblX
  91. //
  92. this.lblX.AutoSize = true;
  93. this.lblX.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
  94. this.lblX.Location = new System.Drawing.Point(162, 12);
  95. this.lblX.Name = "lblX";
  96. this.lblX.Size = new System.Drawing.Size(26, 32);
  97. this.lblX.TabIndex = 1;
  98. this.lblX.Text = "x";
  99. //
  100. // lblY
  101. //
  102. this.lblY.AutoSize = true;
  103. this.lblY.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
  104. this.lblY.Location = new System.Drawing.Point(162, 59);
  105. this.lblY.Name = "lblY";
  106. this.lblY.Size = new System.Drawing.Size(26, 32);
  107. this.lblY.TabIndex = 2;
  108. this.lblY.Text = "y";
  109. //
  110. // lblZ
  111. //
  112. this.lblZ.AutoSize = true;
  113. this.lblZ.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
  114. this.lblZ.Location = new System.Drawing.Point(162, 112);
  115. this.lblZ.Name = "lblZ";
  116. this.lblZ.Size = new System.Drawing.Size(25, 32);
  117. this.lblZ.TabIndex = 3;
  118. this.lblZ.Text = "z";
  119. //
  120. // tbInputX
  121. //
  122. this.tbInputX.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  123. this.tbInputX.Location = new System.Drawing.Point(208, 18);
  124. this.tbInputX.Name = "tbInputX";
  125. this.tbInputX.Size = new System.Drawing.Size(199, 29);
  126. this.tbInputX.TabIndex = 4;
  127. //
  128. // tbInputY
  129. //
  130. this.tbInputY.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  131. this.tbInputY.Location = new System.Drawing.Point(208, 65);
  132. this.tbInputY.Name = "tbInputY";
  133. this.tbInputY.Size = new System.Drawing.Size(199, 29);
  134. this.tbInputY.TabIndex = 5;
  135. //
  136. // tbInputZ
  137. //
  138. this.tbInputZ.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  139. this.tbInputZ.Location = new System.Drawing.Point(208, 118);
  140. this.tbInputZ.Name = "tbInputZ";
  141. this.tbInputZ.Size = new System.Drawing.Size(199, 29);
  142. this.tbInputZ.TabIndex = 6;
  143. //
  144. // lblAnswer
  145. //
  146. this.lblAnswer.AutoSize = true;
  147. this.lblAnswer.Font = new System.Drawing.Font("Segoe UI Semibold", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
  148. this.lblAnswer.Location = new System.Drawing.Point(12, 226);
  149. this.lblAnswer.Name = "lblAnswer";
  150. this.lblAnswer.Size = new System.Drawing.Size(374, 65);
  151. this.lblAnswer.TabIndex = 7;
  152. this.lblAnswer.Text = "Область ответа";
  153. //
  154. // btnCalculate
  155. //
  156. this.btnCalculate.Location = new System.Drawing.Point(208, 174);
  157. this.btnCalculate.Name = "btnCalculate";
  158. this.btnCalculate.Size = new System.Drawing.Size(199, 34);
  159. this.btnCalculate.TabIndex = 8;
  160. this.btnCalculate.Text = "Пуск!";
  161. this.btnCalculate.UseVisualStyleBackColor = true;
  162. this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
  163. //
  164. // CalculatorMain
  165. //
  166. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  167. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  168. this.ClientSize = new System.Drawing.Size(479, 313);
  169. this.Controls.Add(this.btnCalculate);
  170. this.Controls.Add(this.lblAnswer);
  171. this.Controls.Add(this.tbInputZ);
  172. this.Controls.Add(this.tbInputY);
  173. this.Controls.Add(this.tbInputX);
  174. this.Controls.Add(this.lblZ);
  175. this.Controls.Add(this.lblY);
  176. this.Controls.Add(this.lblX);
  177. this.Controls.Add(this.grbSelectFunction);
  178. this.Name = "CalculatorMain";
  179. this.Text = "Калькулятор";
  180. this.Load += new System.EventHandler(this.CalcMainLoad);
  181. this.grbSelectFunction.ResumeLayout(false);
  182. this.grbSelectFunction.PerformLayout();
  183. this.ResumeLayout(false);
  184. this.PerformLayout();
  185. }
  186. #endregion
  187. private System.Windows.Forms.GroupBox grbSelectFunction;
  188. private System.Windows.Forms.RadioButton rbFunctionEPow;
  189. private System.Windows.Forms.RadioButton rbFunctionPow2;
  190. private System.Windows.Forms.RadioButton rbFunctionSh;
  191. private System.Windows.Forms.Label lblX;
  192. private System.Windows.Forms.Label lblY;
  193. private System.Windows.Forms.Label lblZ;
  194. private System.Windows.Forms.TextBox tbInputX;
  195. private System.Windows.Forms.TextBox tbInputY;
  196. private System.Windows.Forms.TextBox tbInputZ;
  197. private System.Windows.Forms.Label lblAnswer;
  198. private System.Windows.Forms.Button btnCalculate;
  199. }
  200. }