namespace Annulus.Testbed
{
partial class Main
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.viewport = new Blacklight.Core.ViewportControl();
this.panel = new System.Windows.Forms.Panel();
this.pausedCheck = new System.Windows.Forms.CheckBox();
this.singlestep = new System.Windows.Forms.CheckBox();
this.timeLabel = new System.Windows.Forms.Label();
this.resetButton = new System.Windows.Forms.Button();
this.timer = new System.Windows.Forms.Timer(this.components);
this.panel.SuspendLayout();
this.SuspendLayout();
//
// viewport
//
this.viewport.BackColor = System.Drawing.Color.PowderBlue;
this.viewport.Dock = System.Windows.Forms.DockStyle.Fill;
this.viewport.Location = new System.Drawing.Point(0, 0);
this.viewport.Name = "viewport";
this.viewport.Size = new System.Drawing.Size(493, 262);
this.viewport.TabIndex = 0;
//
// panel
//
this.panel.Controls.Add(this.pausedCheck);
this.panel.Controls.Add(this.singlestep);
this.panel.Controls.Add(this.timeLabel);
this.panel.Controls.Add(this.resetButton);
this.panel.Dock = System.Windows.Forms.DockStyle.Left;
this.panel.Location = new System.Drawing.Point(0, 0);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(110, 262);
this.panel.TabIndex = 1;
//
// pausedCheck
//
this.pausedCheck.AutoSize = true;
this.pausedCheck.Location = new System.Drawing.Point(7, 63);
this.pausedCheck.Name = "pausedCheck";
this.pausedCheck.Size = new System.Drawing.Size(55, 17);
this.pausedCheck.TabIndex = 2;
this.pausedCheck.Text = "pause";
this.pausedCheck.UseVisualStyleBackColor = true;
//
// singlestep
//
this.singlestep.AutoSize = true;
this.singlestep.Location = new System.Drawing.Point(7, 86);
this.singlestep.Name = "singlestep";
this.singlestep.Size = new System.Drawing.Size(76, 17);
this.singlestep.TabIndex = 3;
this.singlestep.Text = "single step";
this.singlestep.UseVisualStyleBackColor = true;
//
// timeLabel
//
this.timeLabel.AutoSize = true;
this.timeLabel.Location = new System.Drawing.Point(12, 9);
this.timeLabel.Name = "timeLabel";
this.timeLabel.Size = new System.Drawing.Size(42, 13);
this.timeLabel.TabIndex = 1;
this.timeLabel.Text = "Time = ";
//
// resetButton
//
this.resetButton.Location = new System.Drawing.Point(12, 34);
this.resetButton.Name = "resetButton";
this.resetButton.Size = new System.Drawing.Size(75, 23);
this.resetButton.TabIndex = 0;
this.resetButton.Text = "Reset";
this.resetButton.UseVisualStyleBackColor = true;
this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
//
// timer
//
this.timer.Enabled = true;
this.timer.Interval = 16;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(493, 262);
this.Controls.Add(this.panel);
this.Controls.Add(this.viewport);
this.Name = "Main";
this.Text = "Annulus.Testbed";
this.panel.ResumeLayout(false);
this.panel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private Blacklight.Core.ViewportControl viewport;
private System.Windows.Forms.Panel panel;
private System.Windows.Forms.Label timeLabel;
private System.Windows.Forms.Button resetButton;
private System.Windows.Forms.CheckBox singlestep;
private System.Windows.Forms.CheckBox pausedCheck;
private System.Windows.Forms.Timer timer;
}
}