advanced file viewer initial commit
This commit is contained in:
219
advancedpictureviewer/Form1.Designer.cs
generated
Normal file
219
advancedpictureviewer/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,219 @@
|
||||
namespace advancedpictureviewer
|
||||
{
|
||||
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()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
||||
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
||||
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.toolButton_rotL = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolButton_rotY = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolButton_flipX = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolButton_flipY = new System.Windows.Forms.ToolStripButton();
|
||||
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
||||
this.fileSizeLabel = new System.Windows.Forms.Label();
|
||||
this.toolStripContainer1.ContentPanel.SuspendLayout();
|
||||
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
|
||||
this.toolStripContainer1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// toolStripContainer1
|
||||
//
|
||||
//
|
||||
// toolStripContainer1.ContentPanel
|
||||
//
|
||||
this.toolStripContainer1.ContentPanel.Controls.Add(this.fileSizeLabel);
|
||||
this.toolStripContainer1.ContentPanel.Controls.Add(this.pictureBox1);
|
||||
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(384, 312);
|
||||
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
|
||||
this.toolStripContainer1.Name = "toolStripContainer1";
|
||||
this.toolStripContainer1.Size = new System.Drawing.Size(384, 361);
|
||||
this.toolStripContainer1.TabIndex = 0;
|
||||
this.toolStripContainer1.Text = "toolStripContainer1";
|
||||
//
|
||||
// toolStripContainer1.TopToolStripPanel
|
||||
//
|
||||
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip1);
|
||||
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip1);
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(384, 312);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.pictureBox1.TabIndex = 0;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// menuStrip1
|
||||
//
|
||||
this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None;
|
||||
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(384, 24);
|
||||
this.menuStrip1.TabIndex = 0;
|
||||
this.menuStrip1.Text = "menuStrip1";
|
||||
//
|
||||
// fileToolStripMenuItem
|
||||
//
|
||||
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.openToolStripMenuItem,
|
||||
this.exitToolStripMenuItem});
|
||||
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
||||
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
||||
this.fileToolStripMenuItem.Text = "File";
|
||||
//
|
||||
// openToolStripMenuItem
|
||||
//
|
||||
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
||||
this.openToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.openToolStripMenuItem.Text = "Open";
|
||||
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
|
||||
//
|
||||
// exitToolStripMenuItem
|
||||
//
|
||||
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
||||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.exitToolStripMenuItem.Text = "Exit";
|
||||
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStrip1
|
||||
//
|
||||
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
|
||||
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.toolButton_rotL,
|
||||
this.toolButton_rotY,
|
||||
this.toolButton_flipX,
|
||||
this.toolButton_flipY});
|
||||
this.toolStrip1.Location = new System.Drawing.Point(3, 24);
|
||||
this.toolStrip1.Name = "toolStrip1";
|
||||
this.toolStrip1.Size = new System.Drawing.Size(233, 25);
|
||||
this.toolStrip1.TabIndex = 1;
|
||||
//
|
||||
// toolButton_rotL
|
||||
//
|
||||
this.toolButton_rotL.Image = ((System.Drawing.Image)(resources.GetObject("toolButton_rotL.Image")));
|
||||
this.toolButton_rotL.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolButton_rotL.Name = "toolButton_rotL";
|
||||
this.toolButton_rotL.Size = new System.Drawing.Size(54, 22);
|
||||
this.toolButton_rotL.Text = "Rot L";
|
||||
this.toolButton_rotL.Click += new System.EventHandler(this.toolButton_RotL_Click);
|
||||
//
|
||||
// toolButton_rotY
|
||||
//
|
||||
this.toolButton_rotY.Image = ((System.Drawing.Image)(resources.GetObject("toolButton_rotY.Image")));
|
||||
this.toolButton_rotY.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolButton_rotY.Name = "toolButton_rotY";
|
||||
this.toolButton_rotY.Size = new System.Drawing.Size(55, 22);
|
||||
this.toolButton_rotY.Text = "Rot R";
|
||||
this.toolButton_rotY.Click += new System.EventHandler(this.toolButton_RotY_Click);
|
||||
//
|
||||
// toolButton_flipX
|
||||
//
|
||||
this.toolButton_flipX.Image = ((System.Drawing.Image)(resources.GetObject("toolButton_flipX.Image")));
|
||||
this.toolButton_flipX.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolButton_flipX.Name = "toolButton_flipX";
|
||||
this.toolButton_flipX.Size = new System.Drawing.Size(56, 22);
|
||||
this.toolButton_flipX.Text = "Flip X";
|
||||
this.toolButton_flipX.Click += new System.EventHandler(this.toolButton_FlipX_Click);
|
||||
//
|
||||
// toolButton_flipY
|
||||
//
|
||||
this.toolButton_flipY.Image = ((System.Drawing.Image)(resources.GetObject("toolButton_flipY.Image")));
|
||||
this.toolButton_flipY.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolButton_flipY.Name = "toolButton_flipY";
|
||||
this.toolButton_flipY.Size = new System.Drawing.Size(56, 22);
|
||||
this.toolButton_flipY.Text = "Flip Y";
|
||||
this.toolButton_flipY.Click += new System.EventHandler(this.toolButton_FlipY_Click);
|
||||
//
|
||||
// openFileDialog1
|
||||
//
|
||||
this.openFileDialog1.FileName = "openFileDialog1";
|
||||
//
|
||||
// fileSizeLabel
|
||||
//
|
||||
this.fileSizeLabel.AutoSize = true;
|
||||
this.fileSizeLabel.Location = new System.Drawing.Point(337, 290);
|
||||
this.fileSizeLabel.Name = "fileSizeLabel";
|
||||
this.fileSizeLabel.Size = new System.Drawing.Size(0, 13);
|
||||
this.fileSizeLabel.TabIndex = 1;
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(384, 361);
|
||||
this.Controls.Add(this.toolStripContainer1);
|
||||
this.MainMenuStrip = this.menuStrip1;
|
||||
this.Name = "Form1";
|
||||
this.Text = "Form1";
|
||||
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
|
||||
this.toolStripContainer1.ContentPanel.PerformLayout();
|
||||
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
|
||||
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
|
||||
this.toolStripContainer1.ResumeLayout(false);
|
||||
this.toolStripContainer1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.menuStrip1.ResumeLayout(false);
|
||||
this.menuStrip1.PerformLayout();
|
||||
this.toolStrip1.ResumeLayout(false);
|
||||
this.toolStrip1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
|
||||
private System.Windows.Forms.MenuStrip menuStrip1;
|
||||
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStrip toolStrip1;
|
||||
private System.Windows.Forms.ToolStripButton toolButton_rotL;
|
||||
private System.Windows.Forms.ToolStripButton toolButton_rotY;
|
||||
private System.Windows.Forms.ToolStripButton toolButton_flipX;
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.ToolStripButton toolButton_flipY;
|
||||
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
||||
private System.Windows.Forms.Label fileSizeLabel;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user