123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- namespace WindowsFormsApp6
- {
- partial class Lab1
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Lab1));
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.tbInputK = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.btnCalculate = 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(330, 66);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // tbInputK
- //
- this.tbInputK.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.tbInputK.Location = new System.Drawing.Point(42, 93);
- this.tbInputK.Name = "tbInputK";
- this.tbInputK.Size = new System.Drawing.Size(100, 26);
- this.tbInputK.TabIndex = 1;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.label1.Location = new System.Drawing.Point(13, 96);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(23, 20);
- this.label1.TabIndex = 2;
- this.label1.Text = "K:";
- //
- // btnCalculate
- //
- this.btnCalculate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.btnCalculate.Location = new System.Drawing.Point(12, 143);
- this.btnCalculate.Name = "btnCalculate";
- this.btnCalculate.Size = new System.Drawing.Size(153, 31);
- this.btnCalculate.TabIndex = 3;
- this.btnCalculate.Text = "Вычислить ";
- this.btnCalculate.UseVisualStyleBackColor = true;
- this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
- //
- // Lab1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(354, 186);
- this.Controls.Add(this.btnCalculate);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.tbInputK);
- this.Controls.Add(this.pictureBox1);
- this.Name = "Lab1";
- this.Text = "Lab1";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Lab1_FormClosed);
- this.Load += new System.EventHandler(this.Lab1_Load);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.TextBox tbInputK;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnCalculate;
- }
- }
|