namespace ImageSorter { 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() { this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.panel1 = new System.Windows.Forms.Panel(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.tagList = new System.Windows.Forms.TreeView(); this.label1 = new System.Windows.Forms.Label(); this.prevButton = new System.Windows.Forms.Button(); this.nextButton = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox1.Location = new System.Drawing.Point(12, 12); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(348, 400); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // panel1 // this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.panel1.Controls.Add(this.button2); this.panel1.Controls.Add(this.button1); this.panel1.Controls.Add(this.label2); this.panel1.Controls.Add(this.label3); this.panel1.Controls.Add(this.textBox1); this.panel1.Controls.Add(this.tagList); this.panel1.Controls.Add(this.label1); this.panel1.Location = new System.Drawing.Point(367, 13); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(200, 399); this.panel1.TabIndex = 1; // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(4, 30); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(35, 13); this.label2.TabIndex = 4; this.label2.Text = "label2"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // label3 // this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(3, 379); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(47, 13); this.label3.TabIndex = 3; this.label3.Text = "New tag"; // // textBox1 // this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.textBox1.Location = new System.Drawing.Point(56, 376); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(140, 20); this.textBox1.TabIndex = 2; this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Global_KeyDown); // // tagList // this.tagList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.tagList.CheckBoxes = true; this.tagList.Location = new System.Drawing.Point(4, 166); this.tagList.Name = "tagList"; this.tagList.ShowRootLines = false; this.tagList.Size = new System.Drawing.Size(193, 204); this.tagList.TabIndex = 1; this.tagList.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tagList_AfterCheck); this.tagList.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Global_KeyDown); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(4, 4); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(35, 13); this.label1.TabIndex = 0; this.label1.Text = "label1"; // // prevButton // this.prevButton.Location = new System.Drawing.Point(12, 12); this.prevButton.Name = "prevButton"; this.prevButton.Size = new System.Drawing.Size(23, 23); this.prevButton.TabIndex = 2; this.prevButton.Text = "<"; this.prevButton.UseVisualStyleBackColor = true; this.prevButton.Click += new System.EventHandler(this.prevButton_Click); this.prevButton.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Global_KeyDown); // // nextButton // this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.nextButton.Location = new System.Drawing.Point(337, 12); this.nextButton.Name = "nextButton"; this.nextButton.Size = new System.Drawing.Size(23, 23); this.nextButton.TabIndex = 3; this.nextButton.TabStop = false; this.nextButton.Text = ">"; this.nextButton.UseVisualStyleBackColor = true; this.nextButton.Click += new System.EventHandler(this.nextButton_Click); this.nextButton.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Global_KeyDown); // // button1 // this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.button1.Location = new System.Drawing.Point(7, 47); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(130, 23); this.button1.TabIndex = 5; this.button1.Text = "Exclude this image"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // button2 // this.button2.Enabled = false; this.button2.Location = new System.Drawing.Point(143, 47); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(52, 23); this.button2.TabIndex = 6; this.button2.Text = "undo"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(579, 424); this.Controls.Add(this.nextButton); this.Controls.Add(this.prevButton); this.Controls.Add(this.panel1); this.Controls.Add(this.pictureBox1); this.Name = "Form1"; this.Text = "Image Sorter"; this.Shown += new System.EventHandler(this.Form1_Shown); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Global_KeyDown); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Button prevButton; private System.Windows.Forms.Button nextButton; private System.Windows.Forms.Label label2; private System.Windows.Forms.TreeView tagList; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; } }