namespace RadioCalculator { partial class CalculatorMain { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.grbSelectFunction = new System.Windows.Forms.GroupBox(); this.rbFunctionEPow = new System.Windows.Forms.RadioButton(); this.rbFunctionPow2 = new System.Windows.Forms.RadioButton(); this.rbFunctionSh = new System.Windows.Forms.RadioButton(); this.lblX = new System.Windows.Forms.Label(); this.lblY = new System.Windows.Forms.Label(); this.lblZ = new System.Windows.Forms.Label(); this.tbInputX = new System.Windows.Forms.TextBox(); this.tbInputY = new System.Windows.Forms.TextBox(); this.tbInputZ = new System.Windows.Forms.TextBox(); this.lblAnswer = new System.Windows.Forms.Label(); this.btnCalculate = new System.Windows.Forms.Button(); this.grbSelectFunction.SuspendLayout(); this.SuspendLayout(); // // grbSelectFunction // this.grbSelectFunction.Controls.Add(this.rbFunctionEPow); this.grbSelectFunction.Controls.Add(this.rbFunctionPow2); this.grbSelectFunction.Controls.Add(this.rbFunctionSh); this.grbSelectFunction.Location = new System.Drawing.Point(12, 12); this.grbSelectFunction.Name = "grbSelectFunction"; this.grbSelectFunction.Size = new System.Drawing.Size(116, 99); this.grbSelectFunction.TabIndex = 0; this.grbSelectFunction.TabStop = false; this.grbSelectFunction.Text = "Функция"; // // rbFunctionEPow // this.rbFunctionEPow.AutoSize = true; this.rbFunctionEPow.Location = new System.Drawing.Point(6, 72); this.rbFunctionEPow.Name = "rbFunctionEPow"; this.rbFunctionEPow.Size = new System.Drawing.Size(35, 19); this.rbFunctionEPow.TabIndex = 2; this.rbFunctionEPow.TabStop = true; this.rbFunctionEPow.Text = "e˟"; this.rbFunctionEPow.UseVisualStyleBackColor = true; // // rbFunctionPow2 // this.rbFunctionPow2.AutoSize = true; this.rbFunctionPow2.Location = new System.Drawing.Point(6, 47); this.rbFunctionPow2.Name = "rbFunctionPow2"; this.rbFunctionPow2.Size = new System.Drawing.Size(35, 19); this.rbFunctionPow2.TabIndex = 1; this.rbFunctionPow2.TabStop = true; this.rbFunctionPow2.Text = "x²"; this.rbFunctionPow2.UseMnemonic = false; this.rbFunctionPow2.UseVisualStyleBackColor = true; // // rbFunctionSh // this.rbFunctionSh.AutoSize = true; this.rbFunctionSh.Location = new System.Drawing.Point(6, 22); this.rbFunctionSh.Name = "rbFunctionSh"; this.rbFunctionSh.Size = new System.Drawing.Size(51, 19); this.rbFunctionSh.TabIndex = 0; this.rbFunctionSh.TabStop = true; this.rbFunctionSh.Text = "sh(x)"; this.rbFunctionSh.UseVisualStyleBackColor = true; // // lblX // this.lblX.AutoSize = true; this.lblX.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); this.lblX.Location = new System.Drawing.Point(162, 12); this.lblX.Name = "lblX"; this.lblX.Size = new System.Drawing.Size(26, 32); this.lblX.TabIndex = 1; this.lblX.Text = "x"; // // lblY // this.lblY.AutoSize = true; this.lblY.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); this.lblY.Location = new System.Drawing.Point(162, 59); this.lblY.Name = "lblY"; this.lblY.Size = new System.Drawing.Size(26, 32); this.lblY.TabIndex = 2; this.lblY.Text = "y"; // // lblZ // this.lblZ.AutoSize = true; this.lblZ.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); this.lblZ.Location = new System.Drawing.Point(162, 112); this.lblZ.Name = "lblZ"; this.lblZ.Size = new System.Drawing.Size(25, 32); this.lblZ.TabIndex = 3; this.lblZ.Text = "z"; // // tbInputX // this.tbInputX.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.tbInputX.Location = new System.Drawing.Point(208, 18); this.tbInputX.Name = "tbInputX"; this.tbInputX.Size = new System.Drawing.Size(199, 29); this.tbInputX.TabIndex = 4; // // tbInputY // this.tbInputY.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.tbInputY.Location = new System.Drawing.Point(208, 65); this.tbInputY.Name = "tbInputY"; this.tbInputY.Size = new System.Drawing.Size(199, 29); this.tbInputY.TabIndex = 5; // // tbInputZ // this.tbInputZ.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.tbInputZ.Location = new System.Drawing.Point(208, 118); this.tbInputZ.Name = "tbInputZ"; this.tbInputZ.Size = new System.Drawing.Size(199, 29); this.tbInputZ.TabIndex = 6; // // lblAnswer // this.lblAnswer.AutoSize = true; this.lblAnswer.Font = new System.Drawing.Font("Segoe UI Semibold", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); this.lblAnswer.Location = new System.Drawing.Point(12, 226); this.lblAnswer.Name = "lblAnswer"; this.lblAnswer.Size = new System.Drawing.Size(374, 65); this.lblAnswer.TabIndex = 7; this.lblAnswer.Text = "Область ответа"; // // btnCalculate // this.btnCalculate.Location = new System.Drawing.Point(208, 174); this.btnCalculate.Name = "btnCalculate"; this.btnCalculate.Size = new System.Drawing.Size(199, 34); this.btnCalculate.TabIndex = 8; this.btnCalculate.Text = "Пуск!"; this.btnCalculate.UseVisualStyleBackColor = true; this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click); // // CalculatorMain // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(479, 313); this.Controls.Add(this.btnCalculate); this.Controls.Add(this.lblAnswer); this.Controls.Add(this.tbInputZ); this.Controls.Add(this.tbInputY); this.Controls.Add(this.tbInputX); this.Controls.Add(this.lblZ); this.Controls.Add(this.lblY); this.Controls.Add(this.lblX); this.Controls.Add(this.grbSelectFunction); this.Name = "CalculatorMain"; this.Text = "Калькулятор"; this.Load += new System.EventHandler(this.CalcMainLoad); this.grbSelectFunction.ResumeLayout(false); this.grbSelectFunction.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.GroupBox grbSelectFunction; private System.Windows.Forms.RadioButton rbFunctionEPow; private System.Windows.Forms.RadioButton rbFunctionPow2; private System.Windows.Forms.RadioButton rbFunctionSh; private System.Windows.Forms.Label lblX; private System.Windows.Forms.Label lblY; private System.Windows.Forms.Label lblZ; private System.Windows.Forms.TextBox tbInputX; private System.Windows.Forms.TextBox tbInputY; private System.Windows.Forms.TextBox tbInputZ; private System.Windows.Forms.Label lblAnswer; private System.Windows.Forms.Button btnCalculate; } }