using System.Windows.Forms; namespace workshop2 { partial class Form1 { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.button3 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.button4 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.controlPanel = new System.Windows.Forms.Panel(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.controlPanel.SuspendLayout(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(334, 321); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; // // button3 // this.button3.Location = new System.Drawing.Point(26, 85); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(40, 40); this.button3.TabIndex = 3; this.button3.Text = "Left"; this.button3.UseVisualStyleBackColor = true; this.button3.Click += new System.EventHandler(this.rotateLeft_Click); // // button2 // this.button2.Location = new System.Drawing.Point(26, 227); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(100, 40); this.button2.TabIndex = 2; this.button2.Text = "Quit"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.quitButton_Click); // // button4 // this.button4.Location = new System.Drawing.Point(86, 85); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(40, 40); this.button4.TabIndex = 4; this.button4.Text = "Right"; this.button4.UseVisualStyleBackColor = true; this.button4.Click += new System.EventHandler(this.rotateRight_Click); // // button1 // this.button1.Location = new System.Drawing.Point(26, 19); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(100, 40); this.button1.TabIndex = 1; this.button1.Text = "Select Image"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.openFileButton_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(55, 69); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(39, 13); this.label1.TabIndex = 5; this.label1.Text = "Rotate"; // // controlPanel // this.controlPanel.Controls.Add(this.label1); this.controlPanel.Controls.Add(this.button1); this.controlPanel.Controls.Add(this.button4); this.controlPanel.Controls.Add(this.button2); this.controlPanel.Controls.Add(this.button3); this.controlPanel.Dock = System.Windows.Forms.DockStyle.Right; this.controlPanel.Location = new System.Drawing.Point(334, 0); this.controlPanel.Name = "controlPanel"; this.controlPanel.Size = new System.Drawing.Size(150, 321); this.controlPanel.TabIndex = 6; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(484, 321); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.controlPanel); this.Name = "Form1"; this.Text = "Workshop 2 Basic"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.controlPanel.ResumeLayout(false); this.controlPanel.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private OpenFileDialog openFileDialog1; private Button button3; private Button button2; private Button button4; private Button button1; private Label label1; private Panel controlPanel; } }