| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 | namespace Prakt2{    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()        {            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();            this.panelPages = new System.Windows.Forms.Panel();            this.dgvAgents = new System.Windows.Forms.DataGridView();            this.Column1 = new System.Windows.Forms.DataGridViewImageColumn();            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();            ((System.ComponentModel.ISupportInitialize)(this.dgvAgents)).BeginInit();            this.SuspendLayout();            //             // panelPages            //             this.panelPages.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)             | System.Windows.Forms.AnchorStyles.Right)));            this.panelPages.Location = new System.Drawing.Point(23, 349);            this.panelPages.Margin = new System.Windows.Forms.Padding(3, 3, 20, 3);            this.panelPages.Name = "panelPages";            this.panelPages.Size = new System.Drawing.Size(434, 54);            this.panelPages.TabIndex = 1;            //             // dgvAgents            //             this.dgvAgents.AllowUserToAddRows = false;            this.dgvAgents.AllowUserToDeleteRows = false;            this.dgvAgents.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.dgvAgents.BackgroundColor = System.Drawing.SystemColors.ControlLight;            this.dgvAgents.BorderStyle = System.Windows.Forms.BorderStyle.None;            this.dgvAgents.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;            this.dgvAgents.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;            this.dgvAgents.ColumnHeadersVisible = false;            this.dgvAgents.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {            this.Column1,            this.Column2,            this.Column3});            this.dgvAgents.GridColor = System.Drawing.SystemColors.ControlLight;            this.dgvAgents.Location = new System.Drawing.Point(23, 12);            this.dgvAgents.Name = "dgvAgents";            this.dgvAgents.ReadOnly = true;            this.dgvAgents.RowHeadersVisible = false;            this.dgvAgents.RowTemplate.DividerHeight = 10;            this.dgvAgents.RowTemplate.Height = 90;            this.dgvAgents.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.dgvAgents.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;            this.dgvAgents.Size = new System.Drawing.Size(434, 295);            this.dgvAgents.TabIndex = 2;            //             // Column1            //             this.Column1.HeaderText = "Column1";            this.Column1.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;            this.Column1.Name = "Column1";            this.Column1.ReadOnly = true;            this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // Column2            //             this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;            dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;            this.Column2.DefaultCellStyle = dataGridViewCellStyle9;            this.Column2.HeaderText = "Column2";            this.Column2.Name = "Column2";            this.Column2.ReadOnly = true;            this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;            //             // Column3            //             dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;            this.Column3.DefaultCellStyle = dataGridViewCellStyle10;            this.Column3.HeaderText = "Column3";            this.Column3.Name = "Column3";            this.Column3.ReadOnly = true;            this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;            this.Column3.Width = 120;            //             // Form1            //             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.BackColor = System.Drawing.SystemColors.ControlLight;            this.ClientSize = new System.Drawing.Size(482, 403);            this.Controls.Add(this.dgvAgents);            this.Controls.Add(this.panelPages);            this.MinimumSize = new System.Drawing.Size(498, 442);            this.Name = "Form1";            this.Text = "Form1";            this.Load += new System.EventHandler(this.Form1_Load);            ((System.ComponentModel.ISupportInitialize)(this.dgvAgents)).EndInit();            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.Panel panelPages;        private System.Windows.Forms.DataGridView dgvAgents;        private System.Windows.Forms.DataGridViewImageColumn Column1;        private System.Windows.Forms.DataGridViewTextBoxColumn Column2;        private System.Windows.Forms.DataGridViewTextBoxColumn Column3;    }}
 |