70 lines
2.6 KiB
C#
70 lines
2.6 KiB
C#
namespace VoxelIsometricRenderer
|
|
{
|
|
partial class Terrain4
|
|
{
|
|
/// <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.Display = new System.Windows.Forms.PictureBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.Display)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// Display
|
|
//
|
|
this.Display.BackColor = System.Drawing.Color.Aquamarine;
|
|
this.Display.Location = new System.Drawing.Point(12, 12);
|
|
this.Display.Name = "Display";
|
|
this.Display.Size = new System.Drawing.Size(100, 50);
|
|
this.Display.TabIndex = 0;
|
|
this.Display.TabStop = false;
|
|
this.Display.Paint += new System.Windows.Forms.PaintEventHandler(this.Draw);
|
|
//
|
|
// Terrain4
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.Display);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "Terrain4";
|
|
this.Text = "Form1";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.KillThreads);
|
|
this.Load += new System.EventHandler(this.Terrain4_Load);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.KeyDownEvent);
|
|
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.KeyUpEvent);
|
|
this.Resize += new System.EventHandler(this.ResizeAspectRatio);
|
|
((System.ComponentModel.ISupportInitialize)(this.Display)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox Display;
|
|
}
|
|
}
|
|
|