QuickImage – Rev 1

Subversion Repositories:
Rev:
namespace CraftSynth.ImageEditor.Gui
{
        partial class Form1
        {
                /// <summary>
                /// Required designer variable.
                /// </summary>
                private System.ComponentModel.IContainer components = null;

                /// <summary>
                /// Clean up any resources being used.
                /// </summary>
                /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
                protected override void Dispose(bool disposing)
                {
                        if (disposing && (components != null))
                        {
                                components.Dispose();
                        }
                        base.Dispose(disposing);
                }

                #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()
                {
                        this.menuStrip1 = new System.Windows.Forms.MenuStrip();
                        this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
                        this.tsmiImport = 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.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
                        this.tsmiAbout = 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.menuStrip1.SuspendLayout();
                        this.SuspendLayout();
                        // 
                        // menuStrip1
                        // 
                        this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.helpToolStripMenuItem});
                        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.tsmiImport,
            this.tsmiExport,
            this.toolStripSeparator1,
            this.tsmiExit});
                        this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
                        this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
                        this.fileToolStripMenuItem.Text = "File";
                        // 
                        // tsmiImport
                        // 
                        this.tsmiImport.Name = "tsmiImport";
                        this.tsmiImport.Size = new System.Drawing.Size(233, 22);
                        this.tsmiImport.Text = "Import/Change Initial Image...";
                        this.tsmiImport.Click += new System.EventHandler(this.tsmiImport_Click);
                        // 
                        // tsmiExport
                        // 
                        this.tsmiExport.Name = "tsmiExport";
                        this.tsmiExport.Size = new System.Drawing.Size(152, 22);
                        this.tsmiExport.Text = "Export...";
                        this.tsmiExport.Click += new System.EventHandler(this.tsmiExport_Click);
                        // 
                        // toolStripSeparator1
                        // 
                        this.toolStripSeparator1.Name = "toolStripSeparator1";
                        this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
                        // 
                        // tsmiExit
                        // 
                        this.tsmiExit.Name = "tsmiExit";
                        this.tsmiExit.Size = new System.Drawing.Size(152, 22);
                        this.tsmiExit.Text = "Exit";
                        this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
                        // 
                        // helpToolStripMenuItem
                        // 
                        this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiAbout});
                        this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
                        this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
                        this.helpToolStripMenuItem.Text = "Help";
                        // 
                        // tsmiAbout
                        // 
                        this.tsmiAbout.Name = "tsmiAbout";
                        this.tsmiAbout.Size = new System.Drawing.Size(152, 22);
                        this.tsmiAbout.Text = "About...";
                        this.tsmiAbout.Click += new System.EventHandler(this.tsmiAbout_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;
                        // 
                        // Form1
                        // 
                        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.MainMenuStrip = this.menuStrip1;
                        this.Name = "Form1";
                        this.Text = "Image Editor";
                        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 tsmiImport;
                private System.Windows.Forms.ToolStripMenuItem tsmiExport;
                private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
                private System.Windows.Forms.ToolStripMenuItem tsmiExit;
                private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
                private System.Windows.Forms.ToolStripMenuItem tsmiAbout;
                private System.Windows.Forms.OpenFileDialog openFileDialog1;
                private System.Windows.Forms.SaveFileDialog saveFileDialog1;
                private MainForm imageEditor1;
        }
}