Preview File AiTest/MainForm.Designer.cs
Download aitest.zip , last updated 19 June 2010 (11.27 KB)
DownloadPreview
namespace AiTest
{
partial class MainForm
{
/// <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();
}
if (_symbolFont != null)
_symbolFont.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.mapPictureBox = new System.Windows.Forms.PictureBox();
this.newMapButton = new System.Windows.Forms.Button();
this.closeButton = new System.Windows.Forms.Button();
this.addFireflyButton = new System.Windows.Forms.Button();
this.addButterflyButton = new System.Windows.Forms.Button();
this.spriteTimer = new System.Windows.Forms.Timer(this.components);
this.speedTrackBar = new System.Windows.Forms.TrackBar();
this.nextMoveButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.mapPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.speedTrackBar)).BeginInit();
this.SuspendLayout();
//
// mapPictureBox
//
this.mapPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mapPictureBox.Location = new System.Drawing.Point(12, 12);
this.mapPictureBox.Name = "mapPictureBox";
this.mapPictureBox.Size = new System.Drawing.Size(458, 283);
this.mapPictureBox.TabIndex = 0;
this.mapPictureBox.TabStop = false;
this.mapPictureBox.Resize += new System.EventHandler(this.mapPictureBox_Resize);
this.mapPictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.mapPictureBox_Paint);
//
// newMapButton
//
this.newMapButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.newMapButton.Location = new System.Drawing.Point(476, 12);
this.newMapButton.Name = "newMapButton";
this.newMapButton.Size = new System.Drawing.Size(75, 23);
this.newMapButton.TabIndex = 1;
this.newMapButton.Text = "New Map";
this.newMapButton.UseVisualStyleBackColor = true;
this.newMapButton.Click += new System.EventHandler(this.newMapButton_Click);
//
// closeButton
//
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.closeButton.Location = new System.Drawing.Point(476, 272);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(75, 23);
this.closeButton.TabIndex = 2;
this.closeButton.Text = "Close";
this.closeButton.UseVisualStyleBackColor = true;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// addFireflyButton
//
this.addFireflyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.addFireflyButton.Location = new System.Drawing.Point(476, 41);
this.addFireflyButton.Name = "addFireflyButton";
this.addFireflyButton.Size = new System.Drawing.Size(75, 23);
this.addFireflyButton.TabIndex = 3;
this.addFireflyButton.Text = "Add Firefly";
this.addFireflyButton.UseVisualStyleBackColor = true;
this.addFireflyButton.Click += new System.EventHandler(this.addFireflyButton_Click);
//
// addButterflyButton
//
this.addButterflyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.addButterflyButton.Location = new System.Drawing.Point(476, 70);
this.addButterflyButton.Name = "addButterflyButton";
this.addButterflyButton.Size = new System.Drawing.Size(75, 23);
this.addButterflyButton.TabIndex = 4;
this.addButterflyButton.Text = "Add Butterfly";
this.addButterflyButton.UseVisualStyleBackColor = true;
this.addButterflyButton.Click += new System.EventHandler(this.addButterflyButton_Click);
//
// spriteTimer
//
this.spriteTimer.Enabled = true;
this.spriteTimer.Interval = 1000;
this.spriteTimer.Tick += new System.EventHandler(this.spriteTimer_Tick);
//
// speedTrackBar
//
this.speedTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.speedTrackBar.LargeChange = 100;
this.speedTrackBar.Location = new System.Drawing.Point(476, 99);
this.speedTrackBar.Maximum = 1000;
this.speedTrackBar.Name = "speedTrackBar";
this.speedTrackBar.Size = new System.Drawing.Size(75, 45);
this.speedTrackBar.SmallChange = 10;
this.speedTrackBar.TabIndex = 5;
this.speedTrackBar.TickFrequency = 100;
this.speedTrackBar.Value = 1000;
this.speedTrackBar.Scroll += new System.EventHandler(this.speedTrackBar_Scroll);
//
// nextMoveButton
//
this.nextMoveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nextMoveButton.Location = new System.Drawing.Point(476, 150);
this.nextMoveButton.Name = "nextMoveButton";
this.nextMoveButton.Size = new System.Drawing.Size(75, 23);
this.nextMoveButton.TabIndex = 6;
this.nextMoveButton.Text = "Next Move";
this.nextMoveButton.UseVisualStyleBackColor = true;
this.nextMoveButton.Click += new System.EventHandler(this.nextMoveButton_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.closeButton;
this.ClientSize = new System.Drawing.Size(563, 307);
this.Controls.Add(this.nextMoveButton);
this.Controls.Add(this.speedTrackBar);
this.Controls.Add(this.addButterflyButton);
this.Controls.Add(this.addFireflyButton);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.newMapButton);
this.Controls.Add(this.mapPictureBox);
this.Name = "MainForm";
this.Text = "AiTest";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
((System.ComponentModel.ISupportInitialize)(this.mapPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.speedTrackBar)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox mapPictureBox;
private System.Windows.Forms.Button newMapButton;
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.Button addFireflyButton;
private System.Windows.Forms.Button addButterflyButton;
private System.Windows.Forms.Timer spriteTimer;
private System.Windows.Forms.TrackBar speedTrackBar;
private System.Windows.Forms.Button nextMoveButton;
}
}