123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- namespace WindowsFormsAppUP02._02Alekseev2
- {
- partial class FormMain
- {
- /// <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()
- {
- this.txtValueX = new System.Windows.Forms.TextBox();
- this.txtValueY = new System.Windows.Forms.TextBox();
- this.txtValueZ = new System.Windows.Forms.TextBox();
- this.btnResultValue = new System.Windows.Forms.Button();
- this.txtValueT = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
- //
- // txtValueX
- //
- this.txtValueX.Location = new System.Drawing.Point(160, 123);
- this.txtValueX.Margin = new System.Windows.Forms.Padding(2);
- this.txtValueX.Name = "txtValueX";
- this.txtValueX.Size = new System.Drawing.Size(210, 20);
- this.txtValueX.TabIndex = 0;
- //
- // txtValueY
- //
- this.txtValueY.Location = new System.Drawing.Point(160, 163);
- this.txtValueY.Margin = new System.Windows.Forms.Padding(2);
- this.txtValueY.Name = "txtValueY";
- this.txtValueY.Size = new System.Drawing.Size(210, 20);
- this.txtValueY.TabIndex = 1;
- //
- // txtValueZ
- //
- this.txtValueZ.Location = new System.Drawing.Point(160, 203);
- this.txtValueZ.Margin = new System.Windows.Forms.Padding(2);
- this.txtValueZ.Name = "txtValueZ";
- this.txtValueZ.Size = new System.Drawing.Size(210, 20);
- this.txtValueZ.TabIndex = 2;
- //
- // btnResultValue
- //
- this.btnResultValue.Location = new System.Drawing.Point(468, 162);
- this.btnResultValue.Margin = new System.Windows.Forms.Padding(2);
- this.btnResultValue.Name = "btnResultValue";
- this.btnResultValue.Size = new System.Drawing.Size(208, 19);
- this.btnResultValue.TabIndex = 3;
- this.btnResultValue.Text = "Рассчитать значение t";
- this.btnResultValue.UseVisualStyleBackColor = true;
- this.btnResultValue.Click += new System.EventHandler(this.btnResultValueClick);
- //
- // txtValueT
- //
- this.txtValueT.Location = new System.Drawing.Point(160, 240);
- this.txtValueT.Margin = new System.Windows.Forms.Padding(2);
- this.txtValueT.Name = "txtValueT";
- this.txtValueT.Size = new System.Drawing.Size(210, 20);
- this.txtValueT.TabIndex = 4;
- //
- // FormMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(993, 366);
- this.Controls.Add(this.txtValueT);
- this.Controls.Add(this.btnResultValue);
- this.Controls.Add(this.txtValueZ);
- this.Controls.Add(this.txtValueY);
- this.Controls.Add(this.txtValueX);
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "FormMain";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Главная форма программы";
- this.Load += new System.EventHandler(this.Form1Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtValueX;
- private System.Windows.Forms.TextBox txtValueY;
- private System.Windows.Forms.TextBox txtValueZ;
- private System.Windows.Forms.Button btnResultValue;
- private System.Windows.Forms.TextBox txtValueT;
- }
- }
|