70 lines
2.4 KiB
C#
70 lines
2.4 KiB
C#
|
|
namespace TestWinFormsDataVis
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|
|
|