namespace WinFormsApp1 { 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.DirectoryTextBox = new System.Windows.Forms.TextBox(); this.SortFilesBtn = new System.Windows.Forms.Button(); this.DeleteDuplicateFilesBtn = new System.Windows.Forms.Button(); this.DirectoryTreeView = new System.Windows.Forms.TreeView(); this.OpenDirectoryBtn = new System.Windows.Forms.Button(); this.UseSortingByDayCheckBox = new System.Windows.Forms.CheckBox(); this.UseSortingByWeekCheckBox = new System.Windows.Forms.CheckBox(); this.UseSortingByYearCheckBox = new System.Windows.Forms.CheckBox(); this.GenerateTestingDirectoryBtn = new System.Windows.Forms.Button(); this.SuspendLayout(); // // DirectoryTextBox // this.DirectoryTextBox.Location = new System.Drawing.Point(12, 12); this.DirectoryTextBox.Name = "DirectoryTextBox"; this.DirectoryTextBox.ReadOnly = true; this.DirectoryTextBox.Size = new System.Drawing.Size(427, 31); this.DirectoryTextBox.TabIndex = 0; // // SortFilesBtn // this.SortFilesBtn.Location = new System.Drawing.Point(449, 50); this.SortFilesBtn.Name = "SortFilesBtn"; this.SortFilesBtn.Size = new System.Drawing.Size(184, 34); this.SortFilesBtn.TabIndex = 1; this.SortFilesBtn.Text = "Sort files"; this.SortFilesBtn.UseVisualStyleBackColor = true; this.SortFilesBtn.Click += new System.EventHandler(this.SortFilesBtn_Click); // // DeleteDuplicateFilesBtn // this.DeleteDuplicateFilesBtn.Location = new System.Drawing.Point(12, 49); this.DeleteDuplicateFilesBtn.Name = "DeleteDuplicateFilesBtn"; this.DeleteDuplicateFilesBtn.Size = new System.Drawing.Size(184, 34); this.DeleteDuplicateFilesBtn.TabIndex = 2; this.DeleteDuplicateFilesBtn.Text = "Delete duplicate files"; this.DeleteDuplicateFilesBtn.UseVisualStyleBackColor = true; this.DeleteDuplicateFilesBtn.Click += new System.EventHandler(this.DeleteDuplicateFilesBtn_Click); // // DirectoryTreeView // this.DirectoryTreeView.Location = new System.Drawing.Point(12, 89); this.DirectoryTreeView.Name = "DirectoryTreeView"; this.DirectoryTreeView.Size = new System.Drawing.Size(621, 349); this.DirectoryTreeView.TabIndex = 3; // // OpenDirectoryBtn // this.OpenDirectoryBtn.Location = new System.Drawing.Point(449, 9); this.OpenDirectoryBtn.Name = "OpenDirectoryBtn"; this.OpenDirectoryBtn.Size = new System.Drawing.Size(87, 34); this.OpenDirectoryBtn.TabIndex = 4; this.OpenDirectoryBtn.Text = "Open"; this.OpenDirectoryBtn.UseVisualStyleBackColor = true; this.OpenDirectoryBtn.Click += new System.EventHandler(this.OpenDirectoryBtn_Click); // // UseSortingByDayCheckBox // this.UseSortingByDayCheckBox.AutoSize = true; this.UseSortingByDayCheckBox.Checked = true; this.UseSortingByDayCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; this.UseSortingByDayCheckBox.Location = new System.Drawing.Point(207, 54); this.UseSortingByDayCheckBox.Name = "UseSortingByDayCheckBox"; this.UseSortingByDayCheckBox.Size = new System.Drawing.Size(69, 29); this.UseSortingByDayCheckBox.TabIndex = 5; this.UseSortingByDayCheckBox.Text = "Day"; this.UseSortingByDayCheckBox.UseVisualStyleBackColor = true; // // UseSortingByWeekCheckBox // this.UseSortingByWeekCheckBox.AutoSize = true; this.UseSortingByWeekCheckBox.Checked = true; this.UseSortingByWeekCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; this.UseSortingByWeekCheckBox.Location = new System.Drawing.Point(282, 54); this.UseSortingByWeekCheckBox.Name = "UseSortingByWeekCheckBox"; this.UseSortingByWeekCheckBox.Size = new System.Drawing.Size(81, 29); this.UseSortingByWeekCheckBox.TabIndex = 6; this.UseSortingByWeekCheckBox.Text = "Week"; this.UseSortingByWeekCheckBox.UseVisualStyleBackColor = true; // // UseSortingByYearCheckBox // this.UseSortingByYearCheckBox.AutoSize = true; this.UseSortingByYearCheckBox.Checked = true; this.UseSortingByYearCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; this.UseSortingByYearCheckBox.Location = new System.Drawing.Point(369, 54); this.UseSortingByYearCheckBox.Name = "UseSortingByYearCheckBox"; this.UseSortingByYearCheckBox.Size = new System.Drawing.Size(70, 29); this.UseSortingByYearCheckBox.TabIndex = 7; this.UseSortingByYearCheckBox.Text = "Year"; this.UseSortingByYearCheckBox.UseVisualStyleBackColor = true; // // GenerateTestingDirectoryBtn // this.GenerateTestingDirectoryBtn.Location = new System.Drawing.Point(542, 9); this.GenerateTestingDirectoryBtn.Name = "GenerateTestingDirectoryBtn"; this.GenerateTestingDirectoryBtn.Size = new System.Drawing.Size(91, 34); this.GenerateTestingDirectoryBtn.TabIndex = 8; this.GenerateTestingDirectoryBtn.Text = "Generate"; this.GenerateTestingDirectoryBtn.UseVisualStyleBackColor = true; this.GenerateTestingDirectoryBtn.Click += new System.EventHandler(this.GenerateTestingDirectoryBtn_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(645, 450); this.Controls.Add(this.GenerateTestingDirectoryBtn); this.Controls.Add(this.UseSortingByYearCheckBox); this.Controls.Add(this.UseSortingByWeekCheckBox); this.Controls.Add(this.UseSortingByDayCheckBox); this.Controls.Add(this.OpenDirectoryBtn); this.Controls.Add(this.DirectoryTreeView); this.Controls.Add(this.DeleteDuplicateFilesBtn); this.Controls.Add(this.SortFilesBtn); this.Controls.Add(this.DirectoryTextBox); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private TextBox DirectoryTextBox; private Button SortFilesBtn; private Button DeleteDuplicateFilesBtn; private TreeView DirectoryTreeView; private Button OpenDirectoryBtn; private CheckBox UseSortingByDayCheckBox; private CheckBox UseSortingByWeekCheckBox; private CheckBox UseSortingByYearCheckBox; private Button GenerateTestingDirectoryBtn; } }