namespace photo_sorter
{
partial class form_main
{
///
/// 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(form_main));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openDirectoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectDestinationDirectoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.quitApplicationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.gbox_preview = new System.Windows.Forms.GroupBox();
this.lbl_counter = new System.Windows.Forms.Label();
this.lbl_current_fname = new System.Windows.Forms.Label();
this.btn_next = new System.Windows.Forms.Button();
this.btn_prev = new System.Windows.Forms.Button();
this.btn_sort = new System.Windows.Forms.Button();
this.img_preview = new System.Windows.Forms.PictureBox();
this.gbox_info = new System.Windows.Forms.GroupBox();
this.btn_reload_src = new System.Windows.Forms.Button();
this.btn_open_src_dir = new System.Windows.Forms.Button();
this.btn_open_dest_dir = new System.Windows.Forms.Button();
this.tbox_source_dir = new System.Windows.Forms.TextBox();
this.lbl_source_dir = new System.Windows.Forms.Label();
this.tbox_dest_dir = new System.Windows.Forms.TextBox();
this.lbl_dest_dir = new System.Windows.Forms.Label();
this.gbox_copybool = new System.Windows.Forms.GroupBox();
this.rad_sort_move = new System.Windows.Forms.RadioButton();
this.rad_sort_copy = new System.Windows.Forms.RadioButton();
this.tbox_sort_secondary = new System.Windows.Forms.TextBox();
this.lbl_sort_secondary = new System.Windows.Forms.Label();
this.tbox_sort_primary = new System.Windows.Forms.TextBox();
this.lbl_sort_primary = new System.Windows.Forms.Label();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.stat_last_action = new System.Windows.Forms.ToolStripStatusLabel();
this.split_container_main = new System.Windows.Forms.SplitContainer();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.menuStrip1.SuspendLayout();
this.gbox_preview.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.img_preview)).BeginInit();
this.gbox_info.SuspendLayout();
this.gbox_copybool.SuspendLayout();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.split_container_main)).BeginInit();
this.split_container_main.Panel1.SuspendLayout();
this.split_container_main.Panel2.SuspendLayout();
this.split_container_main.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1101, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openDirectoryToolStripMenuItem,
this.selectDestinationDirectoryToolStripMenuItem,
this.quitApplicationToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// openDirectoryToolStripMenuItem
//
this.openDirectoryToolStripMenuItem.Name = "openDirectoryToolStripMenuItem";
this.openDirectoryToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
this.openDirectoryToolStripMenuItem.Text = "&Open Source Directory";
this.openDirectoryToolStripMenuItem.Click += new System.EventHandler(this.openDirectoryToolStripMenuItem_Click);
//
// selectDestinationDirectoryToolStripMenuItem
//
this.selectDestinationDirectoryToolStripMenuItem.Name = "selectDestinationDirectoryToolStripMenuItem";
this.selectDestinationDirectoryToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
this.selectDestinationDirectoryToolStripMenuItem.Text = "Select &Destination Directory";
this.selectDestinationDirectoryToolStripMenuItem.Click += new System.EventHandler(this.selectDestinationDirectoryToolStripMenuItem_Click);
//
// quitApplicationToolStripMenuItem
//
this.quitApplicationToolStripMenuItem.Name = "quitApplicationToolStripMenuItem";
this.quitApplicationToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
this.quitApplicationToolStripMenuItem.Text = "&Quit Application";
this.quitApplicationToolStripMenuItem.Click += new System.EventHandler(this.quitApplicationToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "&Help";
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.aboutToolStripMenuItem.Text = "&About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// gbox_preview
//
this.gbox_preview.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.gbox_preview.Controls.Add(this.lbl_counter);
this.gbox_preview.Controls.Add(this.lbl_current_fname);
this.gbox_preview.Controls.Add(this.btn_next);
this.gbox_preview.Controls.Add(this.btn_prev);
this.gbox_preview.Controls.Add(this.btn_sort);
this.gbox_preview.Controls.Add(this.img_preview);
this.gbox_preview.Enabled = false;
this.gbox_preview.Location = new System.Drawing.Point(3, 3);
this.gbox_preview.Name = "gbox_preview";
this.gbox_preview.Size = new System.Drawing.Size(708, 533);
this.gbox_preview.TabIndex = 1;
this.gbox_preview.TabStop = false;
this.gbox_preview.Text = "Preview";
//
// lbl_counter
//
this.lbl_counter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_counter.Location = new System.Drawing.Point(607, 18);
this.lbl_counter.Name = "lbl_counter";
this.lbl_counter.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.lbl_counter.Size = new System.Drawing.Size(95, 23);
this.lbl_counter.TabIndex = 9;
this.lbl_counter.Text = "1 of 1";
this.lbl_counter.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// lbl_current_fname
//
this.lbl_current_fname.AutoSize = true;
this.lbl_current_fname.Location = new System.Drawing.Point(9, 18);
this.lbl_current_fname.Name = "lbl_current_fname";
this.lbl_current_fname.Size = new System.Drawing.Size(214, 13);
this.lbl_current_fname.TabIndex = 7;
this.lbl_current_fname.Text = "hank_ketchum.file - Select Source to begin!";
//
// btn_next
//
this.btn_next.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_next.Location = new System.Drawing.Point(397, 13);
this.btn_next.Name = "btn_next";
this.btn_next.Size = new System.Drawing.Size(75, 23);
this.btn_next.TabIndex = 8;
this.btn_next.Text = "&Next >>";
this.btn_next.UseVisualStyleBackColor = true;
this.btn_next.Click += new System.EventHandler(this.btn_next_Click);
//
// btn_prev
//
this.btn_prev.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_prev.Location = new System.Drawing.Point(235, 13);
this.btn_prev.Name = "btn_prev";
this.btn_prev.Size = new System.Drawing.Size(75, 23);
this.btn_prev.TabIndex = 6;
this.btn_prev.Text = "<< &Previous";
this.btn_prev.UseVisualStyleBackColor = true;
this.btn_prev.Click += new System.EventHandler(this.btn_prev_Click);
//
// btn_sort
//
this.btn_sort.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.btn_sort.Location = new System.Drawing.Point(316, 13);
this.btn_sort.Name = "btn_sort";
this.btn_sort.Size = new System.Drawing.Size(75, 23);
this.btn_sort.TabIndex = 7;
this.btn_sort.Text = "&Sort";
this.btn_sort.UseVisualStyleBackColor = true;
this.btn_sort.Click += new System.EventHandler(this.btn_sort_Click);
//
// img_preview
//
this.img_preview.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.img_preview.Image = ((System.Drawing.Image)(resources.GetObject("img_preview.Image")));
this.img_preview.InitialImage = null;
this.img_preview.Location = new System.Drawing.Point(6, 42);
this.img_preview.Name = "img_preview";
this.img_preview.Size = new System.Drawing.Size(696, 485);
this.img_preview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.img_preview.TabIndex = 0;
this.img_preview.TabStop = false;
//
// gbox_info
//
this.gbox_info.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.gbox_info.Controls.Add(this.btn_reload_src);
this.gbox_info.Controls.Add(this.btn_open_src_dir);
this.gbox_info.Controls.Add(this.btn_open_dest_dir);
this.gbox_info.Controls.Add(this.tbox_source_dir);
this.gbox_info.Controls.Add(this.lbl_source_dir);
this.gbox_info.Controls.Add(this.tbox_dest_dir);
this.gbox_info.Controls.Add(this.lbl_dest_dir);
this.gbox_info.Controls.Add(this.gbox_copybool);
this.gbox_info.Controls.Add(this.tbox_sort_secondary);
this.gbox_info.Controls.Add(this.lbl_sort_secondary);
this.gbox_info.Controls.Add(this.tbox_sort_primary);
this.gbox_info.Controls.Add(this.lbl_sort_primary);
this.gbox_info.Location = new System.Drawing.Point(3, 3);
this.gbox_info.Name = "gbox_info";
this.gbox_info.Size = new System.Drawing.Size(353, 533);
this.gbox_info.TabIndex = 2;
this.gbox_info.TabStop = false;
this.gbox_info.Text = "Sorting Info";
//
// btn_reload_src
//
this.btn_reload_src.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_reload_src.Enabled = false;
this.btn_reload_src.Location = new System.Drawing.Point(273, 481);
this.btn_reload_src.Name = "btn_reload_src";
this.btn_reload_src.Size = new System.Drawing.Size(75, 23);
this.btn_reload_src.TabIndex = 902;
this.btn_reload_src.Text = "&Reload";
this.btn_reload_src.UseVisualStyleBackColor = true;
this.btn_reload_src.Click += new System.EventHandler(this.btn_reload_src_Click);
//
// btn_open_src_dir
//
this.btn_open_src_dir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_open_src_dir.Location = new System.Drawing.Point(322, 505);
this.btn_open_src_dir.Name = "btn_open_src_dir";
this.btn_open_src_dir.Size = new System.Drawing.Size(26, 23);
this.btn_open_src_dir.TabIndex = 901;
this.btn_open_src_dir.Text = "...";
this.btn_open_src_dir.UseVisualStyleBackColor = true;
this.btn_open_src_dir.Click += new System.EventHandler(this.btn_open_src_dir_Click);
//
// btn_open_dest_dir
//
this.btn_open_dest_dir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_open_dest_dir.Location = new System.Drawing.Point(322, 34);
this.btn_open_dest_dir.Name = "btn_open_dest_dir";
this.btn_open_dest_dir.Size = new System.Drawing.Size(26, 23);
this.btn_open_dest_dir.TabIndex = 1;
this.btn_open_dest_dir.Text = "...";
this.btn_open_dest_dir.UseVisualStyleBackColor = true;
this.btn_open_dest_dir.Click += new System.EventHandler(this.btn_open_dir_Click);
//
// tbox_source_dir
//
this.tbox_source_dir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbox_source_dir.Location = new System.Drawing.Point(5, 506);
this.tbox_source_dir.Name = "tbox_source_dir";
this.tbox_source_dir.ReadOnly = true;
this.tbox_source_dir.Size = new System.Drawing.Size(315, 20);
this.tbox_source_dir.TabIndex = 900;
this.tbox_source_dir.TabStop = false;
//
// lbl_source_dir
//
this.lbl_source_dir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lbl_source_dir.AutoSize = true;
this.lbl_source_dir.Location = new System.Drawing.Point(6, 491);
this.lbl_source_dir.Name = "lbl_source_dir";
this.lbl_source_dir.Size = new System.Drawing.Size(89, 13);
this.lbl_source_dir.TabIndex = 7;
this.lbl_source_dir.Text = "Source Directory:";
//
// tbox_dest_dir
//
this.tbox_dest_dir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbox_dest_dir.Location = new System.Drawing.Point(6, 35);
this.tbox_dest_dir.Name = "tbox_dest_dir";
this.tbox_dest_dir.ReadOnly = true;
this.tbox_dest_dir.Size = new System.Drawing.Size(314, 20);
this.tbox_dest_dir.TabIndex = 0;
//
// lbl_dest_dir
//
this.lbl_dest_dir.AutoSize = true;
this.lbl_dest_dir.Location = new System.Drawing.Point(7, 20);
this.lbl_dest_dir.Name = "lbl_dest_dir";
this.lbl_dest_dir.Size = new System.Drawing.Size(108, 13);
this.lbl_dest_dir.TabIndex = 5;
this.lbl_dest_dir.Text = "Destination Directory:";
//
// gbox_copybool
//
this.gbox_copybool.Controls.Add(this.rad_sort_move);
this.gbox_copybool.Controls.Add(this.rad_sort_copy);
this.gbox_copybool.Location = new System.Drawing.Point(6, 151);
this.gbox_copybool.Name = "gbox_copybool";
this.gbox_copybool.Size = new System.Drawing.Size(111, 71);
this.gbox_copybool.TabIndex = 4;
this.gbox_copybool.TabStop = false;
this.gbox_copybool.Text = "Sort Method";
//
// rad_sort_move
//
this.rad_sort_move.AutoSize = true;
this.rad_sort_move.Checked = true;
this.rad_sort_move.Location = new System.Drawing.Point(6, 19);
this.rad_sort_move.Name = "rad_sort_move";
this.rad_sort_move.Size = new System.Drawing.Size(52, 17);
this.rad_sort_move.TabIndex = 4;
this.rad_sort_move.TabStop = true;
this.rad_sort_move.Text = "Move";
this.rad_sort_move.UseVisualStyleBackColor = true;
//
// rad_sort_copy
//
this.rad_sort_copy.AutoSize = true;
this.rad_sort_copy.Location = new System.Drawing.Point(6, 42);
this.rad_sort_copy.Name = "rad_sort_copy";
this.rad_sort_copy.Size = new System.Drawing.Size(49, 17);
this.rad_sort_copy.TabIndex = 5;
this.rad_sort_copy.Text = "Copy";
this.rad_sort_copy.UseVisualStyleBackColor = true;
//
// tbox_sort_secondary
//
this.tbox_sort_secondary.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbox_sort_secondary.Location = new System.Drawing.Point(6, 123);
this.tbox_sort_secondary.Name = "tbox_sort_secondary";
this.tbox_sort_secondary.Size = new System.Drawing.Size(341, 20);
this.tbox_sort_secondary.TabIndex = 3;
//
// lbl_sort_secondary
//
this.lbl_sort_secondary.AutoSize = true;
this.lbl_sort_secondary.Location = new System.Drawing.Point(7, 108);
this.lbl_sort_secondary.Name = "lbl_sort_secondary";
this.lbl_sort_secondary.Size = new System.Drawing.Size(180, 13);
this.lbl_sort_secondary.TabIndex = 2;
this.lbl_sort_secondary.Text = "Secondary Sort (e.g. Subject Name):";
//
// tbox_sort_primary
//
this.tbox_sort_primary.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbox_sort_primary.Location = new System.Drawing.Point(6, 79);
this.tbox_sort_primary.Name = "tbox_sort_primary";
this.tbox_sort_primary.Size = new System.Drawing.Size(341, 20);
this.tbox_sort_primary.TabIndex = 2;
//
// lbl_sort_primary
//
this.lbl_sort_primary.AutoSize = true;
this.lbl_sort_primary.Location = new System.Drawing.Point(7, 64);
this.lbl_sort_primary.Name = "lbl_sort_primary";
this.lbl_sort_primary.Size = new System.Drawing.Size(155, 13);
this.lbl_sort_primary.TabIndex = 0;
this.lbl_sort_primary.Text = "Primary Sort (e.g. Event Name):";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.stat_last_action});
this.statusStrip1.Location = new System.Drawing.Point(0, 572);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1101, 22);
this.statusStrip1.TabIndex = 3;
this.statusStrip1.Text = "statusStrip1";
//
// stat_last_action
//
this.stat_last_action.Name = "stat_last_action";
this.stat_last_action.Size = new System.Drawing.Size(92, 17);
this.stat_last_action.Text = "Program started";
this.stat_last_action.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// split_container_main
//
this.split_container_main.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.split_container_main.Location = new System.Drawing.Point(12, 27);
this.split_container_main.Name = "split_container_main";
//
// split_container_main.Panel1
//
this.split_container_main.Panel1.Controls.Add(this.gbox_info);
this.split_container_main.Panel1MinSize = 128;
//
// split_container_main.Panel2
//
this.split_container_main.Panel2.Controls.Add(this.gbox_preview);
this.split_container_main.Panel2MinSize = 256;
this.split_container_main.Size = new System.Drawing.Size(1077, 539);
this.split_container_main.SplitterDistance = 359;
this.split_container_main.TabIndex = 4;
//
// form_main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1101, 594);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.split_container_main);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.MinimumSize = new System.Drawing.Size(768, 480);
this.Name = "form_main";
this.Text = "Skyfall Photo Sorter v0.1";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.gbox_preview.ResumeLayout(false);
this.gbox_preview.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.img_preview)).EndInit();
this.gbox_info.ResumeLayout(false);
this.gbox_info.PerformLayout();
this.gbox_copybool.ResumeLayout(false);
this.gbox_copybool.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.split_container_main.Panel1.ResumeLayout(false);
this.split_container_main.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.split_container_main)).EndInit();
this.split_container_main.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openDirectoryToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem quitApplicationToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.GroupBox gbox_preview;
private System.Windows.Forms.PictureBox img_preview;
private System.Windows.Forms.Button btn_next;
private System.Windows.Forms.Button btn_prev;
private System.Windows.Forms.Button btn_sort;
private System.Windows.Forms.GroupBox gbox_info;
private System.Windows.Forms.TextBox tbox_dest_dir;
private System.Windows.Forms.Label lbl_dest_dir;
private System.Windows.Forms.GroupBox gbox_copybool;
private System.Windows.Forms.RadioButton rad_sort_move;
private System.Windows.Forms.RadioButton rad_sort_copy;
private System.Windows.Forms.TextBox tbox_sort_secondary;
private System.Windows.Forms.Label lbl_sort_secondary;
private System.Windows.Forms.TextBox tbox_sort_primary;
private System.Windows.Forms.Label lbl_sort_primary;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel stat_last_action;
private System.Windows.Forms.SplitContainer split_container_main;
private System.Windows.Forms.TextBox tbox_source_dir;
private System.Windows.Forms.Label lbl_source_dir;
private System.Windows.Forms.Label lbl_current_fname;
private System.Windows.Forms.Button btn_open_dest_dir;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.Button btn_open_src_dir;
private System.Windows.Forms.ToolStripMenuItem selectDestinationDirectoryToolStripMenuItem;
private System.Windows.Forms.Button btn_reload_src;
private System.Windows.Forms.Label lbl_counter;
}
}