BezierFitting.MainForm.InitializeComponent C# (CSharp) Метод

InitializeComponent() приватный Метод

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
Результат void
        private void InitializeComponent()
        {
            this.checkBoxAddPoint = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            // 
            // checkBoxAddPoint
            // 
            this.checkBoxAddPoint.AutoSize = true;
            this.checkBoxAddPoint.Location = new System.Drawing.Point(30, 12);
            this.checkBoxAddPoint.Name = "checkBoxAddPoint";
            this.checkBoxAddPoint.Size = new System.Drawing.Size(79, 19);
            this.checkBoxAddPoint.TabIndex = 0;
            this.checkBoxAddPoint.Text = "Add Point";
            this.checkBoxAddPoint.UseVisualStyleBackColor = true;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(331, 301);
            this.Controls.Add(this.checkBoxAddPoint);
            this.DoubleBuffered = true;
            this.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.Name = "MainForm";
            this.Text = "Bezier Fitting";
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseDown);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseMove);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseUp);
            this.ResumeLayout(false);
            this.PerformLayout();

        }