PurplePen.PunchPatternDialog.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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PunchPatternDialog));
            this.codeList = new System.Windows.Forms.ListBox();
            this.formatButton = new System.Windows.Forms.Button();
            this.punchPatternsLabel = new System.Windows.Forms.Label();
            this.dotGrid = new PurplePen.DotGrid();
            this.SuspendLayout();
            // 
            // okButton
            // 
            resources.ApplyResources(this.okButton, "okButton");
            // 
            // cancelButton
            // 
            resources.ApplyResources(this.cancelButton, "cancelButton");
            // 
            // codeList
            // 
            resources.ApplyResources(this.codeList, "codeList");
            this.codeList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.codeList.FormattingEnabled = true;
            this.codeList.Name = "codeList";
            this.codeList.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.codeList_DrawItem);
            this.codeList.SelectedIndexChanged += new System.EventHandler(this.codeList_SelectedIndexChanged);
            // 
            // formatButton
            // 
            resources.ApplyResources(this.formatButton, "formatButton");
            this.formatButton.Name = "formatButton";
            this.formatButton.UseVisualStyleBackColor = true;
            this.formatButton.Click += new System.EventHandler(this.formatButton_Click);
            // 
            // punchPatternsLabel
            // 
            resources.ApplyResources(this.punchPatternsLabel, "punchPatternsLabel");
            this.punchPatternsLabel.Name = "punchPatternsLabel";
            // 
            // dotGrid
            // 
            resources.ApplyResources(this.dotGrid, "dotGrid");
            this.dotGrid.BackColor = System.Drawing.Color.White;
            this.dotGrid.DotsAcross = 7;
            this.dotGrid.DotsDown = 7;
            this.dotGrid.Name = "dotGrid";
            // 
            // PunchPatternDialog
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.Controls.Add(this.punchPatternsLabel);
            this.Controls.Add(this.codeList);
            this.Controls.Add(this.formatButton);
            this.Controls.Add(this.dotGrid);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
            this.HelpTopic = "ControlsPunchPatterns.htm";
            this.Name = "PunchPatternDialog";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.Controls.SetChildIndex(this.dotGrid, 0);
            this.Controls.SetChildIndex(this.formatButton, 0);
            this.Controls.SetChildIndex(this.codeList, 0);
            this.Controls.SetChildIndex(this.punchPatternsLabel, 0);
            this.Controls.SetChildIndex(this.okButton, 0);
            this.Controls.SetChildIndex(this.cancelButton, 0);
            this.ResumeLayout(false);
            this.PerformLayout();

        }