Advertisement
vovkakorben

Untitled

Feb 14th, 2022
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.98 KB | None | 0 0
  1.  
  2. namespace autopilot_win
  3. {
  4.     partial class Form1
  5.     {
  6.         /// <summary>
  7.         /// Обязательная переменная конструктора.
  8.         /// </summary>
  9.         private System.ComponentModel.IContainer components = null;
  10.  
  11.         /// <summary>
  12.         /// Освободить все используемые ресурсы.
  13.         /// </summary>
  14.         /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  15.         protected override void Dispose(bool disposing)
  16.         {
  17.             if (disposing && (components != null))
  18.             {
  19.                 components.Dispose();
  20.             }
  21.             base.Dispose(disposing);
  22.         }
  23.  
  24.         #region Код, автоматически созданный конструктором форм Windows
  25.  
  26.         /// <summary>
  27.         /// Требуемый метод для поддержки конструктора — не изменяйте
  28.         /// содержимое этого метода с помощью редактора кода.
  29.         /// </summary>
  30.         private void InitializeComponent()
  31.         {
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.SuspendLayout();
  34.             //
  35.             // textBox1
  36.             //
  37.             this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  38.             this.textBox1.Location = new System.Drawing.Point(12, 417);
  39.             this.textBox1.Multiline = true;
  40.             this.textBox1.Name = "textBox1";
  41.             this.textBox1.Size = new System.Drawing.Size(194, 141);
  42.             this.textBox1.TabIndex = 0;
  43.             this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  44.             //
  45.             // Form1
  46.             //
  47.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  48.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  49.             this.ClientSize = new System.Drawing.Size(825, 570);
  50.             this.Controls.Add(this.textBox1);
  51.             this.DoubleBuffered = true;
  52.             this.KeyPreview = true;
  53.             this.Name = "Form1";
  54.             this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
  55.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  56.             this.Text = "Form1";
  57.             this.Load += new System.EventHandler(this.Form1_Load);
  58.             this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
  59.             this.Resize += new System.EventHandler(this.Form1_Resize);
  60.             this.ResumeLayout(false);
  61.             this.PerformLayout();
  62.  
  63.         }
  64.  
  65.         #endregion
  66.  
  67.         private System.Windows.Forms.TextBox textBox1;
  68.         //private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  69.     }
  70. }
  71.  
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement