| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | namespace Пример_плиточного_интерфейса{    partial class Form2    {        /// <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.panel1 = new System.Windows.Forms.Panel();            this.PbxPhoto = new System.Windows.Forms.PictureBox();            this.LblName = new System.Windows.Forms.Label();            this.LblCount = new System.Windows.Forms.Label();            this.panel1.SuspendLayout();            ((System.ComponentModel.ISupportInitialize)(this.PbxPhoto)).BeginInit();            this.SuspendLayout();            //             // panel1            //             this.panel1.BackColor = System.Drawing.Color.White;            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.panel1.Controls.Add(this.LblCount);            this.panel1.Controls.Add(this.LblName);            this.panel1.Controls.Add(this.PbxPhoto);            this.panel1.Location = new System.Drawing.Point(45, 43);            this.panel1.Name = "panel1";            this.panel1.Size = new System.Drawing.Size(182, 175);            this.panel1.TabIndex = 0;            //             // PbxPhoto            //             this.PbxPhoto.Location = new System.Drawing.Point(38, 21);            this.PbxPhoto.Name = "PbxPhoto";            this.PbxPhoto.Size = new System.Drawing.Size(100, 86);            this.PbxPhoto.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;            this.PbxPhoto.TabIndex = 0;            this.PbxPhoto.TabStop = false;            //             // LblName            //             this.LblName.AutoSize = true;            this.LblName.Location = new System.Drawing.Point(15, 114);            this.LblName.Name = "LblName";            this.LblName.Size = new System.Drawing.Size(44, 16);            this.LblName.TabIndex = 1;            this.LblName.Text = "label1";            //             // LblCount            //             this.LblCount.AutoSize = true;            this.LblCount.Location = new System.Drawing.Point(15, 140);            this.LblCount.Name = "LblCount";            this.LblCount.Size = new System.Drawing.Size(44, 16);            this.LblCount.TabIndex = 2;            this.LblCount.Text = "label2";            //             // Form2            //             this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(800, 450);            this.Controls.Add(this.panel1);            this.Name = "Form2";            this.Text = "Form2";            this.panel1.ResumeLayout(false);            this.panel1.PerformLayout();            ((System.ComponentModel.ISupportInitialize)(this.PbxPhoto)).EndInit();            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.Panel panel1;        public System.Windows.Forms.Label LblCount;        public System.Windows.Forms.Label LblName;        public System.Windows.Forms.PictureBox PbxPhoto;    }}
 |