123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
-
- namespace WindowsFormsApp1
- {
- partial class Form1
- {
- /// <summary>
- /// Обязательная переменная конструктора.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Освободить все используемые ресурсы.
- /// </summary>
- /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Код, автоматически созданный конструктором форм Windows
- /// <summary>
- /// Требуемый метод для поддержки конструктора — не изменяйте
- /// содержимое этого метода с помощью редактора кода.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.tbOutput = new System.Windows.Forms.TextBox();
- this.tbInputX = new System.Windows.Forms.TextBox();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.textBox4 = new System.Windows.Forms.TextBox();
- this.tbInputY = new System.Windows.Forms.TextBox();
- this.btnResh = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // pictureBox1
- //
- this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
- this.pictureBox1.Location = new System.Drawing.Point(12, 12);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(334, 94);
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // tbOutput
- //
- this.tbOutput.Location = new System.Drawing.Point(44, 187);
- this.tbOutput.Multiline = true;
- this.tbOutput.Name = "tbOutput";
- this.tbOutput.Size = new System.Drawing.Size(270, 111);
- this.tbOutput.TabIndex = 1;
- //
- // tbInputX
- //
- this.tbInputX.Location = new System.Drawing.Point(72, 126);
- this.tbInputX.Name = "tbInputX";
- this.tbInputX.Size = new System.Drawing.Size(136, 20);
- this.tbInputX.TabIndex = 2;
- //
- // textBox3
- //
- this.textBox3.Enabled = false;
- this.textBox3.Location = new System.Drawing.Point(44, 126);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(29, 20);
- this.textBox3.TabIndex = 3;
- this.textBox3.Text = "X =";
- //
- // textBox4
- //
- this.textBox4.Enabled = false;
- this.textBox4.Location = new System.Drawing.Point(44, 152);
- this.textBox4.Name = "textBox4";
- this.textBox4.Size = new System.Drawing.Size(29, 20);
- this.textBox4.TabIndex = 5;
- this.textBox4.Text = "Y =";
- //
- // tbInputY
- //
- this.tbInputY.Location = new System.Drawing.Point(72, 152);
- this.tbInputY.Name = "tbInputY";
- this.tbInputY.Size = new System.Drawing.Size(136, 20);
- this.tbInputY.TabIndex = 4;
- //
- // btnResh
- //
- this.btnResh.Location = new System.Drawing.Point(226, 126);
- this.btnResh.Name = "btnResh";
- this.btnResh.Size = new System.Drawing.Size(88, 49);
- this.btnResh.TabIndex = 6;
- this.btnResh.Text = "Решить";
- this.btnResh.UseVisualStyleBackColor = true;
- this.btnResh.Click += new System.EventHandler(this.btnResh_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(364, 324);
- this.Controls.Add(this.btnResh);
- this.Controls.Add(this.textBox4);
- this.Controls.Add(this.tbInputY);
- this.Controls.Add(this.textBox3);
- this.Controls.Add(this.tbInputX);
- this.Controls.Add(this.tbOutput);
- this.Controls.Add(this.pictureBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Name = "Form1";
- this.Text = "Form1";
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.TextBox tbOutput;
- private System.Windows.Forms.TextBox tbInputX;
- private System.Windows.Forms.TextBox textBox3;
- private System.Windows.Forms.TextBox textBox4;
- private System.Windows.Forms.TextBox tbInputY;
- private System.Windows.Forms.Button btnResh;
- }
- }
|