CSharpGL.GLCanvas.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

设计器支持所需的方法 - 不要 使用代码编辑器修改此方法的内容。
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.redrawTimer = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            // 
            // redrawTimer
            // 
            this.redrawTimer.Enabled = true;
            this.redrawTimer.Interval = 50;
            this.redrawTimer.Tick += new System.EventHandler(this.redrawTimer_Tick);
            // 
            // GLCanvas
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "GLCanvas";
            this.ResumeLayout(false);

        }