Game_of_Life-NET/Game_of_Life/MainForm1.Designer.cs

222 lines
No EOL
11 KiB
C#

using System.Media;
namespace Game_of_Life;
partial class MainForm1
{
/// <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.pictureBox = new Game_of_Life.PictureBoxWithInterpolationMode();
this.debugLabel = new System.Windows.Forms.Label();
this.scalingSlider = new System.Windows.Forms.TrackBar();
this.buttonRepopulate = new System.Windows.Forms.Button();
this.zoomInButton = new System.Windows.Forms.Button();
this.zoomOutButton = new System.Windows.Forms.Button();
this.buttonTickOnce = new System.Windows.Forms.Button();
this.buttonTick = new System.Windows.Forms.Button();
this.buttonClear = new System.Windows.Forms.Button();
this.numericRenderSleep = new System.Windows.Forms.NumericUpDown();
this.buttonGameArea = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.scalingSlider)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericRenderSleep)).BeginInit();
this.SuspendLayout();
//
// pictureBox
//
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Default;
this.pictureBox.Location = new System.Drawing.Point(0, 0);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(800, 450);
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click);
this.pictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
this.pictureBox.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseWheel);
//
// debugLabel
//
this.debugLabel.AutoSize = true;
this.debugLabel.BackColor = System.Drawing.Color.Transparent;
this.debugLabel.ForeColor = System.Drawing.Color.AliceBlue;
this.debugLabel.Location = new System.Drawing.Point(12, 9);
this.debugLabel.Name = "debugLabel";
this.debugLabel.Size = new System.Drawing.Size(0, 15);
this.debugLabel.TabIndex = 1;
//
// scalingSlider
//
this.scalingSlider.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.scalingSlider.Location = new System.Drawing.Point(12, 405);
this.scalingSlider.Maximum = 500;
this.scalingSlider.Name = "scalingSlider";
this.scalingSlider.Size = new System.Drawing.Size(178, 45);
this.scalingSlider.SmallChange = 2;
this.scalingSlider.TabIndex = 2;
this.scalingSlider.ValueChanged += new System.EventHandler(this.scalingSlider_Changed);
//
// buttonRepopulate
//
this.buttonRepopulate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonRepopulate.Location = new System.Drawing.Point(701, 12);
this.buttonRepopulate.Name = "buttonRepopulate";
this.buttonRepopulate.Size = new System.Drawing.Size(87, 23);
this.buttonRepopulate.TabIndex = 3;
this.buttonRepopulate.Text = "REPOPULATE";
this.buttonRepopulate.UseVisualStyleBackColor = true;
this.buttonRepopulate.Click += new System.EventHandler(this.buttonRepopulate_Click);
//
// zoomInButton
//
this.zoomInButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.zoomInButton.Location = new System.Drawing.Point(12, 373);
this.zoomInButton.Name = "zoomInButton";
this.zoomInButton.Size = new System.Drawing.Size(24, 26);
this.zoomInButton.TabIndex = 4;
this.zoomInButton.Text = "+";
this.zoomInButton.UseVisualStyleBackColor = true;
this.zoomInButton.Click += new System.EventHandler(this.zoomInButton_Click);
//
// zoomOutButton
//
this.zoomOutButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.zoomOutButton.Location = new System.Drawing.Point(42, 373);
this.zoomOutButton.Name = "zoomOutButton";
this.zoomOutButton.Size = new System.Drawing.Size(24, 26);
this.zoomOutButton.TabIndex = 5;
this.zoomOutButton.Text = "-";
this.zoomOutButton.UseVisualStyleBackColor = true;
this.zoomOutButton.Click += new System.EventHandler(this.zoomOutButton_Click);
//
// buttonTickOnce
//
this.buttonTickOnce.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonTickOnce.Location = new System.Drawing.Point(608, 41);
this.buttonTickOnce.Name = "buttonTickOnce";
this.buttonTickOnce.Size = new System.Drawing.Size(87, 23);
this.buttonTickOnce.TabIndex = 6;
this.buttonTickOnce.Text = "TICK";
this.buttonTickOnce.UseVisualStyleBackColor = true;
this.buttonTickOnce.Click += new System.EventHandler(this.buttonTickOnce_Click);
//
// buttonTick
//
this.buttonTick.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonTick.Location = new System.Drawing.Point(701, 41);
this.buttonTick.Name = "buttonTick";
this.buttonTick.Size = new System.Drawing.Size(87, 23);
this.buttonTick.TabIndex = 6;
this.buttonTick.Text = "⏯ PLAY";
this.buttonTick.UseVisualStyleBackColor = true;
this.buttonTick.Click += new System.EventHandler(this.buttonTick_Click);
//
// buttonClear
//
this.buttonClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonClear.Location = new System.Drawing.Point(608, 12);
this.buttonClear.Name = "buttonClear";
this.buttonClear.Size = new System.Drawing.Size(87, 23);
this.buttonClear.TabIndex = 7;
this.buttonClear.Text = "CLEAR";
this.buttonClear.UseVisualStyleBackColor = true;
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
//
// numericRenderSleep
//
this.numericRenderSleep.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.numericRenderSleep.DecimalPlaces = 1;
this.numericRenderSleep.Increment = new decimal(new int[] {
167,
0,
0,
65536});
this.numericRenderSleep.Location = new System.Drawing.Point(512, 12);
this.numericRenderSleep.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.numericRenderSleep.Name = "numericRenderSleep";
this.numericRenderSleep.Size = new System.Drawing.Size(87, 23);
this.numericRenderSleep.TabIndex = 9;
this.numericRenderSleep.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
this.numericRenderSleep.ValueChanged += new System.EventHandler(this.renderSleep_Changed);
//
// buttonGameArea
//
this.buttonGameArea.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonGameArea.Location = new System.Drawing.Point(512, 41);
this.buttonGameArea.Name = "buttonGameArea";
this.buttonGameArea.Size = new System.Drawing.Size(87, 23);
this.buttonGameArea.TabIndex = 10;
this.buttonGameArea.Text = "SHOW AREA";
this.buttonGameArea.UseVisualStyleBackColor = true;
this.buttonGameArea.Click += new System.EventHandler(this.buttonGameArea_Click);
//
// MainForm1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.buttonGameArea);
this.Controls.Add(this.numericRenderSleep);
this.Controls.Add(this.buttonClear);
this.Controls.Add(this.buttonTick);
this.Controls.Add(this.zoomOutButton);
this.Controls.Add(this.zoomInButton);
this.Controls.Add(this.buttonRepopulate);
this.Controls.Add(this.buttonTickOnce);
this.Controls.Add(this.scalingSlider);
this.Controls.Add(this.debugLabel);
this.Controls.Add(this.pictureBox);
this.Name = "MainForm1";
this.Text = "Game of Life :D";
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.scalingSlider)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericRenderSleep)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private PictureBoxWithInterpolationMode pictureBox;
private Label debugLabel;
private TrackBar scalingSlider;
private Button buttonRepopulate;
private Button zoomInButton;
private Button zoomOutButton;
private Button buttonTick;
private Button buttonClear;
private Button buttonTickOnce;
private NumericUpDown numericRenderSleep;
private Button buttonGameArea;
}