deletefilefolder_dll_visual.../Test_DeleteFileFolder/Form1.Designer.cs
2020-11-25 16:55:09 +01:00

267 lines
13 KiB
C#

namespace Test_DeleteFileFolder
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.labelFileName = new System.Windows.Forms.Label();
this.textBoxFileName = new System.Windows.Forms.TextBox();
this.groupBoxOptions = new System.Windows.Forms.GroupBox();
this.groupBoxType = new System.Windows.Forms.GroupBox();
this.groupBoxFiles = new System.Windows.Forms.GroupBox();
this.radioButtonDirectory = new System.Windows.Forms.RadioButton();
this.radioButtonFileOnly = new System.Windows.Forms.RadioButton();
this.radioButtonSingleFile = new System.Windows.Forms.RadioButton();
this.radioButtonAllFiles = new System.Windows.Forms.RadioButton();
this.checkBoxSubdirectories = new System.Windows.Forms.CheckBox();
this.checkBoxCountOnly = new System.Windows.Forms.CheckBox();
this.labelDeletableFiles = new System.Windows.Forms.Label();
this.labelDeletableDirectories = new System.Windows.Forms.Label();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.buttonDelete = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.groupBoxOptions.SuspendLayout();
this.groupBoxType.SuspendLayout();
this.groupBoxFiles.SuspendLayout();
this.SuspendLayout();
//
// labelFileName
//
this.labelFileName.AutoSize = true;
this.labelFileName.Location = new System.Drawing.Point(12, 9);
this.labelFileName.Name = "labelFileName";
this.labelFileName.Size = new System.Drawing.Size(104, 13);
this.labelFileName.TabIndex = 0;
this.labelFileName.Text = "File-/Directory-Name";
//
// textBoxFileName
//
this.textBoxFileName.Location = new System.Drawing.Point(12, 25);
this.textBoxFileName.Name = "textBoxFileName";
this.textBoxFileName.Size = new System.Drawing.Size(260, 20);
this.textBoxFileName.TabIndex = 1;
this.textBoxFileName.TextChanged += new System.EventHandler(this.textBoxFileName_TextChanged);
//
// groupBoxOptions
//
this.groupBoxOptions.Controls.Add(this.checkBoxCountOnly);
this.groupBoxOptions.Controls.Add(this.checkBoxSubdirectories);
this.groupBoxOptions.Controls.Add(this.groupBoxFiles);
this.groupBoxOptions.Controls.Add(this.groupBoxType);
this.groupBoxOptions.Location = new System.Drawing.Point(12, 52);
this.groupBoxOptions.Name = "groupBoxOptions";
this.groupBoxOptions.Size = new System.Drawing.Size(260, 148);
this.groupBoxOptions.TabIndex = 2;
this.groupBoxOptions.TabStop = false;
this.groupBoxOptions.Text = "Options";
//
// groupBoxType
//
this.groupBoxType.Controls.Add(this.radioButtonFileOnly);
this.groupBoxType.Controls.Add(this.radioButtonDirectory);
this.groupBoxType.Location = new System.Drawing.Point(6, 19);
this.groupBoxType.Name = "groupBoxType";
this.groupBoxType.Size = new System.Drawing.Size(248, 47);
this.groupBoxType.TabIndex = 0;
this.groupBoxType.TabStop = false;
this.groupBoxType.Text = "Type";
//
// groupBoxFiles
//
this.groupBoxFiles.Controls.Add(this.radioButtonAllFiles);
this.groupBoxFiles.Controls.Add(this.radioButtonSingleFile);
this.groupBoxFiles.Location = new System.Drawing.Point(6, 72);
this.groupBoxFiles.Name = "groupBoxFiles";
this.groupBoxFiles.Size = new System.Drawing.Size(248, 47);
this.groupBoxFiles.TabIndex = 1;
this.groupBoxFiles.TabStop = false;
this.groupBoxFiles.Text = "Files";
//
// radioButtonDirectory
//
this.radioButtonDirectory.AutoSize = true;
this.radioButtonDirectory.Checked = true;
this.radioButtonDirectory.Location = new System.Drawing.Point(7, 20);
this.radioButtonDirectory.Name = "radioButtonDirectory";
this.radioButtonDirectory.Size = new System.Drawing.Size(67, 17);
this.radioButtonDirectory.TabIndex = 0;
this.radioButtonDirectory.TabStop = true;
this.radioButtonDirectory.Text = "Directory";
this.radioButtonDirectory.UseVisualStyleBackColor = true;
this.radioButtonDirectory.CheckedChanged += new System.EventHandler(this.radioButtonDirectory_CheckedChanged);
//
// radioButtonFileOnly
//
this.radioButtonFileOnly.AutoSize = true;
this.radioButtonFileOnly.Location = new System.Drawing.Point(138, 20);
this.radioButtonFileOnly.Name = "radioButtonFileOnly";
this.radioButtonFileOnly.Size = new System.Drawing.Size(62, 17);
this.radioButtonFileOnly.TabIndex = 1;
this.radioButtonFileOnly.TabStop = true;
this.radioButtonFileOnly.Text = "FileOnly";
this.radioButtonFileOnly.UseVisualStyleBackColor = true;
this.radioButtonFileOnly.CheckedChanged += new System.EventHandler(this.radioButtonFileOnly_CheckedChanged);
//
// radioButtonSingleFile
//
this.radioButtonSingleFile.AutoSize = true;
this.radioButtonSingleFile.Checked = true;
this.radioButtonSingleFile.Location = new System.Drawing.Point(7, 20);
this.radioButtonSingleFile.Name = "radioButtonSingleFile";
this.radioButtonSingleFile.Size = new System.Drawing.Size(70, 17);
this.radioButtonSingleFile.TabIndex = 0;
this.radioButtonSingleFile.TabStop = true;
this.radioButtonSingleFile.Text = "Single file";
this.radioButtonSingleFile.UseVisualStyleBackColor = true;
this.radioButtonSingleFile.CheckedChanged += new System.EventHandler(this.radioButtonSingleFile_CheckedChanged);
//
// radioButtonAllFiles
//
this.radioButtonAllFiles.AutoSize = true;
this.radioButtonAllFiles.Location = new System.Drawing.Point(138, 20);
this.radioButtonAllFiles.Name = "radioButtonAllFiles";
this.radioButtonAllFiles.Size = new System.Drawing.Size(57, 17);
this.radioButtonAllFiles.TabIndex = 1;
this.radioButtonAllFiles.TabStop = true;
this.radioButtonAllFiles.Text = "All files";
this.radioButtonAllFiles.UseVisualStyleBackColor = true;
this.radioButtonAllFiles.CheckedChanged += new System.EventHandler(this.radioButtonAllFiles_CheckedChanged);
//
// checkBoxSubdirectories
//
this.checkBoxSubdirectories.AutoSize = true;
this.checkBoxSubdirectories.Location = new System.Drawing.Point(6, 125);
this.checkBoxSubdirectories.Name = "checkBoxSubdirectories";
this.checkBoxSubdirectories.Size = new System.Drawing.Size(93, 17);
this.checkBoxSubdirectories.TabIndex = 2;
this.checkBoxSubdirectories.Text = "Subdirectories";
this.checkBoxSubdirectories.UseVisualStyleBackColor = true;
this.checkBoxSubdirectories.CheckedChanged += new System.EventHandler(this.checkBoxSubdirectories_CheckedChanged);
//
// checkBoxCountOnly
//
this.checkBoxCountOnly.AutoSize = true;
this.checkBoxCountOnly.Location = new System.Drawing.Point(144, 125);
this.checkBoxCountOnly.Name = "checkBoxCountOnly";
this.checkBoxCountOnly.Size = new System.Drawing.Size(76, 17);
this.checkBoxCountOnly.TabIndex = 3;
this.checkBoxCountOnly.Text = "Count only";
this.checkBoxCountOnly.UseVisualStyleBackColor = true;
this.checkBoxCountOnly.CheckedChanged += new System.EventHandler(this.checkBoxCountOnly_CheckedChanged);
//
// labelDeletableFiles
//
this.labelDeletableFiles.Location = new System.Drawing.Point(12, 210);
this.labelDeletableFiles.Name = "labelDeletableFiles";
this.labelDeletableFiles.Size = new System.Drawing.Size(260, 13);
this.labelDeletableFiles.TabIndex = 3;
this.labelDeletableFiles.Text = "Number of deletable files:";
//
// labelDeletableDirectories
//
this.labelDeletableDirectories.Location = new System.Drawing.Point(12, 237);
this.labelDeletableDirectories.Name = "labelDeletableDirectories";
this.labelDeletableDirectories.Size = new System.Drawing.Size(260, 23);
this.labelDeletableDirectories.TabIndex = 4;
this.labelDeletableDirectories.Text = "Number of deletable Directories";
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(12, 263);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(260, 23);
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.progressBar.TabIndex = 5;
//
// buttonDelete
//
this.buttonDelete.Location = new System.Drawing.Point(12, 296);
this.buttonDelete.Name = "buttonDelete";
this.buttonDelete.Size = new System.Drawing.Size(75, 23);
this.buttonDelete.TabIndex = 6;
this.buttonDelete.Text = "Delete";
this.buttonDelete.UseVisualStyleBackColor = true;
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(198, 296);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 7;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 331);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonDelete);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.labelDeletableDirectories);
this.Controls.Add(this.labelDeletableFiles);
this.Controls.Add(this.groupBoxOptions);
this.Controls.Add(this.textBoxFileName);
this.Controls.Add(this.labelFileName);
this.Name = "Form1";
this.Text = "Test_DeleteFileFolder";
this.groupBoxOptions.ResumeLayout(false);
this.groupBoxOptions.PerformLayout();
this.groupBoxType.ResumeLayout(false);
this.groupBoxType.PerformLayout();
this.groupBoxFiles.ResumeLayout(false);
this.groupBoxFiles.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelFileName;
private System.Windows.Forms.TextBox textBoxFileName;
private System.Windows.Forms.GroupBox groupBoxOptions;
private System.Windows.Forms.CheckBox checkBoxCountOnly;
private System.Windows.Forms.CheckBox checkBoxSubdirectories;
private System.Windows.Forms.GroupBox groupBoxFiles;
private System.Windows.Forms.RadioButton radioButtonAllFiles;
private System.Windows.Forms.RadioButton radioButtonSingleFile;
private System.Windows.Forms.GroupBox groupBoxType;
private System.Windows.Forms.RadioButton radioButtonFileOnly;
private System.Windows.Forms.RadioButton radioButtonDirectory;
private System.Windows.Forms.Label labelDeletableFiles;
private System.Windows.Forms.Label labelDeletableDirectories;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Button buttonDelete;
private System.Windows.Forms.Button buttonCancel;
}
}