QuickImage – Rev 1
?pathlinks?
namespace QuickImage
{
partial class EditorForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditorForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiExport = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.imageEditor1 = new CraftSynth.ImageEditor.MainForm();
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(634, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiExport,
this.saveAsToolStripMenuItem,
this.toolStripSeparator1,
this.tsmiExit});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "File";
//
// tsmiExport
//
this.tsmiExport.Image = ((System.Drawing.Image)(resources.GetObject("tsmiExport.Image")));
this.tsmiExport.Name = "tsmiExport";
this.tsmiExport.Size = new System.Drawing.Size(180, 22);
this.tsmiExport.Text = "Save";
this.tsmiExport.Click += new System.EventHandler(this.tsmiExport_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
//
// tsmiExit
//
this.tsmiExit.Image = ((System.Drawing.Image)(resources.GetObject("tsmiExit.Image")));
this.tsmiExit.Name = "tsmiExit";
this.tsmiExit.Size = new System.Drawing.Size(180, 22);
this.tsmiExit.Text = "Exit";
this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.Filter = "Images|*.bmp;*.jpg;*.png;*.gif";
//
// saveFileDialog1
//
this.saveFileDialog1.Filter = "Bmp|*.bmp|Jpg|*.jpg|Png|*.png|Gif|*.gif";
//
// imageEditor1
//
this.imageEditor1.ArgumentFile = "";
this.imageEditor1.Dock = System.Windows.Forms.DockStyle.Fill;
this.imageEditor1.InitialImage = null;
this.imageEditor1.InitialImageAsFilePath = null;
this.imageEditor1.InitialImageAsPngBytes = null;
this.imageEditor1.Location = new System.Drawing.Point(0, 24);
this.imageEditor1.Name = "imageEditor1";
this.imageEditor1.Size = new System.Drawing.Size(634, 417);
this.imageEditor1.TabIndex = 1;
this.imageEditor1.ZoomOnMouseWheel = false;
//
// saveAsToolStripMenuItem
//
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.saveAsToolStripMenuItem.Text = "Save As...";
this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
//
// EditorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(634, 441);
this.Controls.Add(this.imageEditor1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "EditorForm";
this.Text = "QuickImage: Image Editor";
this.Load += new System.EventHandler(this.EditorForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem tsmiExport;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem tsmiExit;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private CraftSynth.ImageEditor.MainForm imageEditor1;
private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
}
}