namespace Image_Viewer
{
partial class ImageViewerForm
{
///
/// 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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.viewImageButton = new System.Windows.Forms.Button();
this.pictureBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// viewImageButton
//
this.viewImageButton.Location = new System.Drawing.Point(12, 12);
this.viewImageButton.Name = "viewImageButton";
this.viewImageButton.Size = new System.Drawing.Size(98, 33);
this.viewImageButton.TabIndex = 0;
this.viewImageButton.Text = "View Image";
this.viewImageButton.UseVisualStyleBackColor = true;
this.viewImageButton.Click += new System.EventHandler(this.viewImageButton_Click);
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(40, 60);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(484, 419);
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox.TabIndex = 1;
this.pictureBox.TabStop = false;
//
// ImageViewerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(560, 499);
this.Controls.Add(this.pictureBox);
this.Controls.Add(this.viewImageButton);
this.Name = "ImageViewerForm";
this.Text = "AForge Image Viewer";
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button viewImageButton;
private System.Windows.Forms.PictureBox pictureBox;
}
}