namespace TestWinFormsDataVis { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.pnlCanvas = new System.Windows.Forms.Panel(); this.paintTimer = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // pnlCanvas // this.pnlCanvas.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192))))); this.pnlCanvas.Location = new System.Drawing.Point(269, 297); this.pnlCanvas.Name = "pnlCanvas"; this.pnlCanvas.Size = new System.Drawing.Size(487, 123); this.pnlCanvas.TabIndex = 0; this.pnlCanvas.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlCanvas_Paint); // // paintTimer // this.paintTimer.Enabled = true; this.paintTimer.Tick += new System.EventHandler(this.paintTimer_Tick); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.pnlCanvas); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel pnlCanvas; private System.Windows.Forms.Timer paintTimer; } }