namespace SharpImage.Forms
{
partial class siFormIteration
{
///
/// 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(siFormIteration));
this.menuItem = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuItemRemove = new System.Windows.Forms.ToolStripMenuItem();
this.cmdPlay = new System.Windows.Forms.Button();
this.cmdStop = new System.Windows.Forms.Button();
this.cmdPause = new System.Windows.Forms.Button();
this.lblRefresh = new System.Windows.Forms.Label();
this.numericNumIterations = new System.Windows.Forms.NumericUpDown();
this.txtInfo = new System.Windows.Forms.TextBox();
this.menuItem.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericNumIterations)).BeginInit();
this.SuspendLayout();
//
// panelBottom
//
this.panelBottom.Location = new System.Drawing.Point(0, 276);
this.panelBottom.Size = new System.Drawing.Size(344, 52);
//
// menuItem
//
this.menuItem.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemRemove});
this.menuItem.Name = "menuItem";
this.menuItem.Size = new System.Drawing.Size(125, 26);
//
// menuItemRemove
//
this.menuItemRemove.Name = "menuItemRemove";
this.menuItemRemove.Size = new System.Drawing.Size(124, 22);
this.menuItemRemove.Text = "Remove";
//
// cmdPlay
//
this.cmdPlay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cmdPlay.Image = global::SharpImage.Properties.Resources.Play;
this.cmdPlay.Location = new System.Drawing.Point(12, 12);
this.cmdPlay.Name = "cmdPlay";
this.cmdPlay.Size = new System.Drawing.Size(30, 28);
this.cmdPlay.TabIndex = 14;
this.cmdPlay.UseVisualStyleBackColor = true;
this.cmdPlay.Click += new System.EventHandler(this.cmdPlay_Click);
//
// cmdStop
//
this.cmdStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cmdStop.Image = global::SharpImage.Properties.Resources.Stop;
this.cmdStop.Location = new System.Drawing.Point(70, 12);
this.cmdStop.Name = "cmdStop";
this.cmdStop.Size = new System.Drawing.Size(30, 28);
this.cmdStop.TabIndex = 15;
this.cmdStop.UseVisualStyleBackColor = true;
this.cmdStop.Click += new System.EventHandler(this.cmdStop_Click);
//
// cmdPause
//
this.cmdPause.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cmdPause.Image = global::SharpImage.Properties.Resources.Pause;
this.cmdPause.Location = new System.Drawing.Point(41, 12);
this.cmdPause.Name = "cmdPause";
this.cmdPause.Size = new System.Drawing.Size(30, 28);
this.cmdPause.TabIndex = 16;
this.cmdPause.UseVisualStyleBackColor = true;
this.cmdPause.Click += new System.EventHandler(this.cmdPause_Click);
//
// lblRefresh
//
this.lblRefresh.AutoSize = true;
this.lblRefresh.Location = new System.Drawing.Point(9, 51);
this.lblRefresh.Name = "lblRefresh";
this.lblRefresh.Size = new System.Drawing.Size(163, 13);
this.lblRefresh.TabIndex = 18;
this.lblRefresh.Text = "Refresh every iterations";
//
// numericNumIterations
//
this.numericNumIterations.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.numericNumIterations.Location = new System.Drawing.Point(84, 48);
this.numericNumIterations.Maximum = new decimal(new int[] {
25,
0,
0,
0});
this.numericNumIterations.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericNumIterations.Name = "numericNumIterations";
this.numericNumIterations.Size = new System.Drawing.Size(38, 20);
this.numericNumIterations.TabIndex = 19;
this.numericNumIterations.Value = new decimal(new int[] {
1,
0,
0,
0});
this.numericNumIterations.Validated += new System.EventHandler(this.numericNumIterations_Validated);
//
// txtInfo
//
this.txtInfo.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.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtInfo.Location = new System.Drawing.Point(12, 77);
this.txtInfo.Multiline = true;
this.txtInfo.Name = "txtInfo";
this.txtInfo.ReadOnly = true;
this.txtInfo.Size = new System.Drawing.Size(320, 195);
this.txtInfo.TabIndex = 20;
this.txtInfo.WordWrap = false;
//
// siFormIteration
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(344, 328);
this.Controls.Add(this.txtInfo);
this.Controls.Add(this.numericNumIterations);
this.Controls.Add(this.lblRefresh);
this.Controls.Add(this.cmdPause);
this.Controls.Add(this.cmdStop);
this.Controls.Add(this.cmdPlay);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "siFormIteration";
this.Text = "Iteration";
this.Controls.SetChildIndex(this.cmdPlay, 0);
this.Controls.SetChildIndex(this.panelBottom, 0);
this.Controls.SetChildIndex(this.cmdStop, 0);
this.Controls.SetChildIndex(this.cmdPause, 0);
this.Controls.SetChildIndex(this.lblRefresh, 0);
this.Controls.SetChildIndex(this.numericNumIterations, 0);
this.Controls.SetChildIndex(this.txtInfo, 0);
this.menuItem.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.numericNumIterations)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ContextMenuStrip menuItem;
private System.Windows.Forms.ToolStripMenuItem menuItemRemove;
private System.Windows.Forms.Button cmdPlay;
private System.Windows.Forms.Button cmdStop;
private System.Windows.Forms.Button cmdPause;
private System.Windows.Forms.Label lblRefresh;
private System.Windows.Forms.NumericUpDown numericNumIterations;
private System.Windows.Forms.TextBox txtInfo;
}
}