| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | namespace Пример_плиточного_интерфейса{    partial class Form1    {        /// <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()        {            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();            this.button1 = new System.Windows.Forms.Button();            this.LblID = new System.Windows.Forms.Label();            this.SuspendLayout();            //             // flowLayoutPanel1            //             this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)             | System.Windows.Forms.AnchorStyles.Left)             | System.Windows.Forms.AnchorStyles.Right)));            this.flowLayoutPanel1.AutoScroll = true;            this.flowLayoutPanel1.Location = new System.Drawing.Point(27, 30);            this.flowLayoutPanel1.Name = "flowLayoutPanel1";            this.flowLayoutPanel1.Size = new System.Drawing.Size(773, 491);            this.flowLayoutPanel1.TabIndex = 0;            //             // button1            //             this.button1.Location = new System.Drawing.Point(827, 30);            this.button1.Name = "button1";            this.button1.Size = new System.Drawing.Size(75, 23);            this.button1.TabIndex = 1;            this.button1.Text = "button1";            this.button1.UseVisualStyleBackColor = true;            this.button1.Click += new System.EventHandler(this.button1_Click);            //             // LblID            //             this.LblID.AutoSize = true;            this.LblID.Location = new System.Drawing.Point(827, 103);            this.LblID.Name = "LblID";            this.LblID.Size = new System.Drawing.Size(44, 16);            this.LblID.TabIndex = 2;            this.LblID.Text = "label1";            //             // Form1            //             this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(1067, 554);            this.Controls.Add(this.LblID);            this.Controls.Add(this.button1);            this.Controls.Add(this.flowLayoutPanel1);            this.Margin = new System.Windows.Forms.Padding(4);            this.Name = "Form1";            this.Text = "Form1";            this.Load += new System.EventHandler(this.Form1_Load);            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;        private System.Windows.Forms.Button button1;        private System.Windows.Forms.Label LblID;    }}
 |