Files
PictureRepositApp/PictureReposit/Form1.Designer.cs

199 lines
8.6 KiB
C#

namespace PictureReposit
{
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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.lstPicFiles = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.lblPath = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.lblFileName = new System.Windows.Forms.Label();
this.lblCreated = new System.Windows.Forms.Label();
this.btnFileDialog = new System.Windows.Forms.Button();
this.btnReOrganize = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.txtRootDir = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// 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(183, 72);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(654, 548);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// lstPicFiles
//
this.lstPicFiles.FormattingEnabled = true;
this.lstPicFiles.ItemHeight = 15;
this.lstPicFiles.Location = new System.Drawing.Point(13, 72);
this.lstPicFiles.Name = "lstPicFiles";
this.lstPicFiles.Size = new System.Drawing.Size(164, 424);
this.lstPicFiles.TabIndex = 1;
this.lstPicFiles.SelectedIndexChanged += new System.EventHandler(this.lstPicFiles_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(146, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 15);
this.label1.TabIndex = 2;
this.label1.Text = "Path";
//
// lblPath
//
this.lblPath.AutoSize = true;
this.lblPath.Location = new System.Drawing.Point(183, 9);
this.lblPath.Name = "lblPath";
this.lblPath.Size = new System.Drawing.Size(574, 15);
this.lblPath.TabIndex = 3;
this.lblPath.Text = " " +
" " +
" x";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(127, 24);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(50, 15);
this.label2.TabIndex = 4;
this.label2.Text = "Filnamn";
//
// lblFileName
//
this.lblFileName.AutoSize = true;
this.lblFileName.Location = new System.Drawing.Point(183, 24);
this.lblFileName.Name = "lblFileName";
this.lblFileName.Size = new System.Drawing.Size(373, 15);
this.lblFileName.TabIndex = 5;
this.lblFileName.Text = " " +
" x";
//
// lblCreated
//
this.lblCreated.AutoSize = true;
this.lblCreated.Location = new System.Drawing.Point(563, 23);
this.lblCreated.Name = "lblCreated";
this.lblCreated.Size = new System.Drawing.Size(51, 15);
this.lblCreated.TabIndex = 6;
this.lblCreated.Text = "Skapad: ";
//
// btnFileDialog
//
this.btnFileDialog.Location = new System.Drawing.Point(13, 43);
this.btnFileDialog.Name = "btnFileDialog";
this.btnFileDialog.Size = new System.Drawing.Size(75, 23);
this.btnFileDialog.TabIndex = 7;
this.btnFileDialog.Text = "Välj Fil";
this.btnFileDialog.UseVisualStyleBackColor = true;
this.btnFileDialog.Click += new System.EventHandler(this.btnFileDialog_Click);
//
// btnReOrganize
//
this.btnReOrganize.Location = new System.Drawing.Point(13, 503);
this.btnReOrganize.Name = "btnReOrganize";
this.btnReOrganize.Size = new System.Drawing.Size(164, 23);
this.btnReOrganize.TabIndex = 8;
this.btnReOrganize.Text = "Reorganisera Filer";
this.btnReOrganize.UseVisualStyleBackColor = true;
this.btnReOrganize.Click += new System.EventHandler(this.btnReOrganize_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(13, 533);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(83, 15);
this.label3.TabIndex = 9;
this.label3.Text = "Ny RotKatalog";
//
// txtRootDir
//
this.txtRootDir.Location = new System.Drawing.Point(13, 563);
this.txtRootDir.Name = "txtRootDir";
this.txtRootDir.Size = new System.Drawing.Size(164, 23);
this.txtRootDir.TabIndex = 10;
this.txtRootDir.Text = "D:\\Bildlabb\\LabRotCat";
this.txtRootDir.TextChanged += new System.EventHandler(this.txtRootDir_TextChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(869, 642);
this.Controls.Add(this.txtRootDir);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnReOrganize);
this.Controls.Add(this.btnFileDialog);
this.Controls.Add(this.lblCreated);
this.Controls.Add(this.lblFileName);
this.Controls.Add(this.label2);
this.Controls.Add(this.lblPath);
this.Controls.Add(this.label1);
this.Controls.Add(this.lstPicFiles);
this.Controls.Add(this.pictureBox1);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ListBox lstPicFiles;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label lblPath;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label lblFileName;
private System.Windows.Forms.Label lblCreated;
private System.Windows.Forms.Button btnFileDialog;
private System.Windows.Forms.Button btnReOrganize;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtRootDir;
}
}