ATMLCommonLibrary.controls.signal.SignalInterfaceListControl.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.dgInterfaces = new System.Windows.Forms.DataGridView();
            this.name = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.value = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.dgInterfaces)).BeginInit();
            this.SuspendLayout();
            // 
            // dgInterfaces
            // 
            this.dgInterfaces.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgInterfaces.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.name,
            this.value});
            this.dgInterfaces.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgInterfaces.Location = new System.Drawing.Point(0, 0);
            this.dgInterfaces.Name = "dgInterfaces";
            this.dgInterfaces.Size = new System.Drawing.Size(586, 314);
            this.dgInterfaces.TabIndex = 0;
            // 
            // name
            // 
            this.name.HeaderText = "Name";
            this.name.Name = "name";
            this.name.ReadOnly = true;
            // 
            // value
            // 
            this.value.HeaderText = "Value";
            this.value.Name = "value";
            // 
            // SignalInterfaceListControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dgInterfaces);
            this.Name = "SignalInterfaceListControl";
            this.Size = new System.Drawing.Size(586, 314);
            ((System.ComponentModel.ISupportInitialize)(this.dgInterfaces)).EndInit();
            this.ResumeLayout(false);

        }