CraftSynth.ImageEditor – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace CraftSynth.ImageEditor.Gui
2 {
3 partial class Form1
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22  
23 #region Windows Form Designer generated code
24  
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
32 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33 this.tsmiImport = new System.Windows.Forms.ToolStripMenuItem();
34 this.tsmiExport = new System.Windows.Forms.ToolStripMenuItem();
35 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
36 this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
37 this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38 this.tsmiAbout = new System.Windows.Forms.ToolStripMenuItem();
39 this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
40 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
41 this.imageEditor1 = new CraftSynth.ImageEditor.MainForm();
42 this.menuStrip1.SuspendLayout();
43 this.SuspendLayout();
44 //
45 // menuStrip1
46 //
47 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
48 this.fileToolStripMenuItem,
49 this.helpToolStripMenuItem});
50 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
51 this.menuStrip1.Name = "menuStrip1";
52 this.menuStrip1.Size = new System.Drawing.Size(634, 24);
53 this.menuStrip1.TabIndex = 0;
54 this.menuStrip1.Text = "menuStrip1";
55 //
56 // fileToolStripMenuItem
57 //
58 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
59 this.tsmiImport,
60 this.tsmiExport,
61 this.toolStripSeparator1,
62 this.tsmiExit});
63 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
64 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
65 this.fileToolStripMenuItem.Text = "File";
66 //
67 // tsmiImport
68 //
69 this.tsmiImport.Name = "tsmiImport";
70 this.tsmiImport.Size = new System.Drawing.Size(233, 22);
71 this.tsmiImport.Text = "Import/Change Initial Image...";
72 this.tsmiImport.Click += new System.EventHandler(this.tsmiImport_Click);
73 //
74 // tsmiExport
75 //
76 this.tsmiExport.Name = "tsmiExport";
77 this.tsmiExport.Size = new System.Drawing.Size(152, 22);
78 this.tsmiExport.Text = "Export...";
79 this.tsmiExport.Click += new System.EventHandler(this.tsmiExport_Click);
80 //
81 // toolStripSeparator1
82 //
83 this.toolStripSeparator1.Name = "toolStripSeparator1";
84 this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
85 //
86 // tsmiExit
87 //
88 this.tsmiExit.Name = "tsmiExit";
89 this.tsmiExit.Size = new System.Drawing.Size(152, 22);
90 this.tsmiExit.Text = "Exit";
91 this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
92 //
93 // helpToolStripMenuItem
94 //
95 this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
96 this.tsmiAbout});
97 this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
98 this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
99 this.helpToolStripMenuItem.Text = "Help";
100 //
101 // tsmiAbout
102 //
103 this.tsmiAbout.Name = "tsmiAbout";
104 this.tsmiAbout.Size = new System.Drawing.Size(152, 22);
105 this.tsmiAbout.Text = "About...";
106 this.tsmiAbout.Click += new System.EventHandler(this.tsmiAbout_Click);
107 //
108 // openFileDialog1
109 //
110 this.openFileDialog1.FileName = "openFileDialog1";
111 this.openFileDialog1.Filter = "Images|*.bmp;*.jpg;*.png;*.gif";
112 //
113 // saveFileDialog1
114 //
115 this.saveFileDialog1.Filter = "Bmp|*.bmp|Jpg|*.jpg|Png|*.png|Gif|*.gif";
116 //
117 // imageEditor1
118 //
119 this.imageEditor1.ArgumentFile = "";
120 this.imageEditor1.Dock = System.Windows.Forms.DockStyle.Fill;
121 this.imageEditor1.InitialImage = null;
122 this.imageEditor1.InitialImageAsFilePath = null;
123 this.imageEditor1.InitialImageAsPngBytes = null;
124 this.imageEditor1.Location = new System.Drawing.Point(0, 24);
125 this.imageEditor1.Name = "imageEditor1";
126 this.imageEditor1.Size = new System.Drawing.Size(634, 417);
127 this.imageEditor1.TabIndex = 1;
128 this.imageEditor1.ZoomOnMouseWheel = false;
129 //
130 // Form1
131 //
132 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
133 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
134 this.ClientSize = new System.Drawing.Size(634, 441);
135 this.Controls.Add(this.imageEditor1);
136 this.Controls.Add(this.menuStrip1);
137 this.MainMenuStrip = this.menuStrip1;
138 this.Name = "Form1";
139 this.Text = "Image Editor";
140 this.menuStrip1.ResumeLayout(false);
141 this.menuStrip1.PerformLayout();
142 this.ResumeLayout(false);
143 this.PerformLayout();
144  
145 }
146  
147 #endregion
148  
149 private System.Windows.Forms.MenuStrip menuStrip1;
150 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
151 private System.Windows.Forms.ToolStripMenuItem tsmiImport;
152 private System.Windows.Forms.ToolStripMenuItem tsmiExport;
153 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
154 private System.Windows.Forms.ToolStripMenuItem tsmiExit;
155 private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
156 private System.Windows.Forms.ToolStripMenuItem tsmiAbout;
157 private System.Windows.Forms.OpenFileDialog openFileDialog1;
158 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
159 private MainForm imageEditor1;
160 }
161 }
162