namespace itk.Examples.Segmentation { partial class FormBinaryThreshold1 { /// /// 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.menuStrip = new System.Windows.Forms.MenuStrip(); this.menuFile = new System.Windows.Forms.ToolStripMenuItem(); this.menuOpen = new System.Windows.Forms.ToolStripMenuItem(); this.menuExit = new System.Windows.Forms.ToolStripMenuItem(); this.stripStatus = new System.Windows.Forms.StatusStrip(); this.stripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.stripProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.textStatus = new System.Windows.Forms.TextBox(); this.menuStrip.SuspendLayout(); this.stripStatus.SuspendLayout(); this.SuspendLayout(); // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuFile}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(357, 24); this.menuStrip.TabIndex = 0; this.menuStrip.Text = "menuStrip1"; // // menuFile // this.menuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuOpen, this.menuExit}); this.menuFile.Name = "menuFile"; this.menuFile.Size = new System.Drawing.Size(35, 20); this.menuFile.Text = "File"; // // menuOpen // this.menuOpen.Name = "menuOpen"; this.menuOpen.Size = new System.Drawing.Size(152, 22); this.menuOpen.Text = "Open Image"; this.menuOpen.Click += new System.EventHandler(this.menuOpen_Click); // // menuExit // this.menuExit.Name = "menuExit"; this.menuExit.Size = new System.Drawing.Size(152, 22); this.menuExit.Text = "Exit"; this.menuExit.Click += new System.EventHandler(this.menuExit_Click); // // stripStatus // this.stripStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.stripStatusLabel, this.stripProgressBar}); this.stripStatus.Location = new System.Drawing.Point(0, 238); this.stripStatus.Name = "stripStatus"; this.stripStatus.Size = new System.Drawing.Size(357, 22); this.stripStatus.TabIndex = 1; // // stripStatusLabel // this.stripStatusLabel.AutoSize = false; this.stripStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.stripStatusLabel.Name = "stripStatusLabel"; this.stripStatusLabel.Size = new System.Drawing.Size(127, 17); this.stripStatusLabel.Spring = true; this.stripStatusLabel.Text = "Ready"; this.stripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // stripProgressBar // this.stripProgressBar.AutoSize = false; this.stripProgressBar.Name = "stripProgressBar"; this.stripProgressBar.Size = new System.Drawing.Size(200, 16); this.stripProgressBar.Step = 1; this.stripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous; // // textStatus // this.textStatus.Dock = System.Windows.Forms.DockStyle.Fill; this.textStatus.Location = new System.Drawing.Point(0, 24); this.textStatus.Multiline = true; this.textStatus.Name = "textStatus"; this.textStatus.ReadOnly = true; this.textStatus.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textStatus.Size = new System.Drawing.Size(357, 214); this.textStatus.TabIndex = 2; this.textStatus.WordWrap = false; // // FormBinaryThreshold1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(357, 260); this.Controls.Add(this.textStatus); this.Controls.Add(this.stripStatus); this.Controls.Add(this.menuStrip); this.MainMenuStrip = this.menuStrip; this.Name = "FormBinaryThreshold1"; this.Text = "FormBinaryThreshold1"; this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.stripStatus.ResumeLayout(false); this.stripStatus.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menuStrip; private System.Windows.Forms.ToolStripMenuItem menuFile; private System.Windows.Forms.ToolStripMenuItem menuOpen; private System.Windows.Forms.ToolStripMenuItem menuExit; private System.Windows.Forms.StatusStrip stripStatus; private System.Windows.Forms.ToolStripStatusLabel stripStatusLabel; private System.Windows.Forms.ToolStripProgressBar stripProgressBar; private System.Windows.Forms.TextBox textStatus; } }