Add project files.
This commit is contained in:
69
TestWinFormsDataVis/Form1.Designer.cs
generated
Normal file
69
TestWinFormsDataVis/Form1.Designer.cs
generated
Normal file
@ -0,0 +1,69 @@
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user