468 lines
26 KiB
C#
468 lines
26 KiB
C#
namespace RenameIt
|
|
{
|
|
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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
|
this.actionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.previewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.convertToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.cancelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.germanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.groupBoxDirectory = new System.Windows.Forms.GroupBox();
|
|
this.buttonDirectory = new System.Windows.Forms.Button();
|
|
this.textBoxDirectory = new System.Windows.Forms.TextBox();
|
|
this.groupBoxConvert = new System.Windows.Forms.GroupBox();
|
|
this.checkBoxDirectories = new System.Windows.Forms.CheckBox();
|
|
this.checkBoxFiles = new System.Windows.Forms.CheckBox();
|
|
this.checkBoxSubdirectories = new System.Windows.Forms.CheckBox();
|
|
this.textBoxExtension = new System.Windows.Forms.TextBox();
|
|
this.labelExtension = new System.Windows.Forms.Label();
|
|
this.groupBoxFunction = new System.Windows.Forms.GroupBox();
|
|
this.textBoxReplaceThrough = new System.Windows.Forms.TextBox();
|
|
this.textBoxSearchFor = new System.Windows.Forms.TextBox();
|
|
this.labelReplaceThrough = new System.Windows.Forms.Label();
|
|
this.labelSearchFor = new System.Windows.Forms.Label();
|
|
this.radioButtonFreeReplace = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonSpaceToHyphen = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonHyphenToSpace = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonSpaceToUnderline = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonUnderlineToSpace = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonReverseCharacter = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonProperCaseLast = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonProperCase = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonLowerCase = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonUpperCase = new System.Windows.Forms.RadioButton();
|
|
this.groupBoxReport = new System.Windows.Forms.GroupBox();
|
|
this.checkBoxOverwrite = new System.Windows.Forms.CheckBox();
|
|
this.checkBoxSave = new System.Windows.Forms.CheckBox();
|
|
this.progressBarStatus = new System.Windows.Forms.ProgressBar();
|
|
this.buttonPreview = new System.Windows.Forms.Button();
|
|
this.buttonConvert = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
|
|
this.menuStrip.SuspendLayout();
|
|
this.groupBoxDirectory.SuspendLayout();
|
|
this.groupBoxConvert.SuspendLayout();
|
|
this.groupBoxFunction.SuspendLayout();
|
|
this.groupBoxReport.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip
|
|
//
|
|
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.actionToolStripMenuItem,
|
|
this.languageToolStripMenuItem,
|
|
this.helpToolStripMenuItem});
|
|
resources.ApplyResources(this.menuStrip, "menuStrip");
|
|
this.menuStrip.Name = "menuStrip";
|
|
//
|
|
// actionToolStripMenuItem
|
|
//
|
|
this.actionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.previewToolStripMenuItem,
|
|
this.convertToolStripMenuItem,
|
|
this.cancelToolStripMenuItem});
|
|
this.actionToolStripMenuItem.Name = "actionToolStripMenuItem";
|
|
resources.ApplyResources(this.actionToolStripMenuItem, "actionToolStripMenuItem");
|
|
//
|
|
// previewToolStripMenuItem
|
|
//
|
|
this.previewToolStripMenuItem.Name = "previewToolStripMenuItem";
|
|
resources.ApplyResources(this.previewToolStripMenuItem, "previewToolStripMenuItem");
|
|
this.previewToolStripMenuItem.Click += new System.EventHandler(this.previewToolStripMenuItem_Click);
|
|
//
|
|
// convertToolStripMenuItem
|
|
//
|
|
this.convertToolStripMenuItem.Name = "convertToolStripMenuItem";
|
|
resources.ApplyResources(this.convertToolStripMenuItem, "convertToolStripMenuItem");
|
|
this.convertToolStripMenuItem.Click += new System.EventHandler(this.convertToolStripMenuItem_Click);
|
|
//
|
|
// cancelToolStripMenuItem
|
|
//
|
|
this.cancelToolStripMenuItem.Name = "cancelToolStripMenuItem";
|
|
resources.ApplyResources(this.cancelToolStripMenuItem, "cancelToolStripMenuItem");
|
|
this.cancelToolStripMenuItem.Click += new System.EventHandler(this.cancelToolStripMenuItem_Click);
|
|
//
|
|
// languageToolStripMenuItem
|
|
//
|
|
this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.germanToolStripMenuItem,
|
|
this.englishToolStripMenuItem});
|
|
this.languageToolStripMenuItem.Name = "languageToolStripMenuItem";
|
|
resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
|
|
//
|
|
// germanToolStripMenuItem
|
|
//
|
|
this.germanToolStripMenuItem.Name = "germanToolStripMenuItem";
|
|
resources.ApplyResources(this.germanToolStripMenuItem, "germanToolStripMenuItem");
|
|
this.germanToolStripMenuItem.Click += new System.EventHandler(this.germanToolStripMenuItem_Click);
|
|
//
|
|
// englishToolStripMenuItem
|
|
//
|
|
this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
|
|
resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
|
|
this.englishToolStripMenuItem.Click += new System.EventHandler(this.englishToolStripMenuItem_Click_1);
|
|
//
|
|
// helpToolStripMenuItem
|
|
//
|
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.helpToolStripMenuItem1,
|
|
this.aboutToolStripMenuItem});
|
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|
resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
|
|
//
|
|
// helpToolStripMenuItem1
|
|
//
|
|
this.helpToolStripMenuItem1.Name = "helpToolStripMenuItem1";
|
|
resources.ApplyResources(this.helpToolStripMenuItem1, "helpToolStripMenuItem1");
|
|
this.helpToolStripMenuItem1.Click += new System.EventHandler(this.helpToolStripMenuItem1_Click);
|
|
//
|
|
// aboutToolStripMenuItem
|
|
//
|
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
|
resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
|
|
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
|
//
|
|
// groupBoxDirectory
|
|
//
|
|
this.groupBoxDirectory.Controls.Add(this.buttonDirectory);
|
|
this.groupBoxDirectory.Controls.Add(this.textBoxDirectory);
|
|
resources.ApplyResources(this.groupBoxDirectory, "groupBoxDirectory");
|
|
this.groupBoxDirectory.Name = "groupBoxDirectory";
|
|
this.groupBoxDirectory.TabStop = false;
|
|
//
|
|
// buttonDirectory
|
|
//
|
|
resources.ApplyResources(this.buttonDirectory, "buttonDirectory");
|
|
this.buttonDirectory.Name = "buttonDirectory";
|
|
this.buttonDirectory.UseVisualStyleBackColor = true;
|
|
this.buttonDirectory.Click += new System.EventHandler(this.buttonDirectory_Click);
|
|
//
|
|
// textBoxDirectory
|
|
//
|
|
resources.ApplyResources(this.textBoxDirectory, "textBoxDirectory");
|
|
this.textBoxDirectory.Name = "textBoxDirectory";
|
|
this.textBoxDirectory.TextChanged += new System.EventHandler(this.textBoxDirectory_TextChanged);
|
|
//
|
|
// groupBoxConvert
|
|
//
|
|
this.groupBoxConvert.Controls.Add(this.checkBoxDirectories);
|
|
this.groupBoxConvert.Controls.Add(this.checkBoxFiles);
|
|
this.groupBoxConvert.Controls.Add(this.checkBoxSubdirectories);
|
|
this.groupBoxConvert.Controls.Add(this.textBoxExtension);
|
|
this.groupBoxConvert.Controls.Add(this.labelExtension);
|
|
resources.ApplyResources(this.groupBoxConvert, "groupBoxConvert");
|
|
this.groupBoxConvert.Name = "groupBoxConvert";
|
|
this.groupBoxConvert.TabStop = false;
|
|
//
|
|
// checkBoxDirectories
|
|
//
|
|
resources.ApplyResources(this.checkBoxDirectories, "checkBoxDirectories");
|
|
this.checkBoxDirectories.Name = "checkBoxDirectories";
|
|
this.checkBoxDirectories.UseVisualStyleBackColor = true;
|
|
this.checkBoxDirectories.CheckedChanged += new System.EventHandler(this.checkBoxDirectories_CheckedChanged);
|
|
//
|
|
// checkBoxFiles
|
|
//
|
|
resources.ApplyResources(this.checkBoxFiles, "checkBoxFiles");
|
|
this.checkBoxFiles.Name = "checkBoxFiles";
|
|
this.checkBoxFiles.UseVisualStyleBackColor = true;
|
|
this.checkBoxFiles.CheckedChanged += new System.EventHandler(this.checkBoxFiles_CheckedChanged);
|
|
//
|
|
// checkBoxSubdirectories
|
|
//
|
|
resources.ApplyResources(this.checkBoxSubdirectories, "checkBoxSubdirectories");
|
|
this.checkBoxSubdirectories.Name = "checkBoxSubdirectories";
|
|
this.checkBoxSubdirectories.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBoxExtension
|
|
//
|
|
resources.ApplyResources(this.textBoxExtension, "textBoxExtension");
|
|
this.textBoxExtension.Name = "textBoxExtension";
|
|
//
|
|
// labelExtension
|
|
//
|
|
resources.ApplyResources(this.labelExtension, "labelExtension");
|
|
this.labelExtension.Name = "labelExtension";
|
|
//
|
|
// groupBoxFunction
|
|
//
|
|
this.groupBoxFunction.Controls.Add(this.textBoxReplaceThrough);
|
|
this.groupBoxFunction.Controls.Add(this.textBoxSearchFor);
|
|
this.groupBoxFunction.Controls.Add(this.labelReplaceThrough);
|
|
this.groupBoxFunction.Controls.Add(this.labelSearchFor);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonFreeReplace);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonSpaceToHyphen);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonHyphenToSpace);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonSpaceToUnderline);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonUnderlineToSpace);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonReverseCharacter);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonProperCaseLast);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonProperCase);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonLowerCase);
|
|
this.groupBoxFunction.Controls.Add(this.radioButtonUpperCase);
|
|
resources.ApplyResources(this.groupBoxFunction, "groupBoxFunction");
|
|
this.groupBoxFunction.Name = "groupBoxFunction";
|
|
this.groupBoxFunction.TabStop = false;
|
|
//
|
|
// textBoxReplaceThrough
|
|
//
|
|
resources.ApplyResources(this.textBoxReplaceThrough, "textBoxReplaceThrough");
|
|
this.textBoxReplaceThrough.Name = "textBoxReplaceThrough";
|
|
//
|
|
// textBoxSearchFor
|
|
//
|
|
resources.ApplyResources(this.textBoxSearchFor, "textBoxSearchFor");
|
|
this.textBoxSearchFor.Name = "textBoxSearchFor";
|
|
//
|
|
// labelReplaceThrough
|
|
//
|
|
resources.ApplyResources(this.labelReplaceThrough, "labelReplaceThrough");
|
|
this.labelReplaceThrough.Name = "labelReplaceThrough";
|
|
//
|
|
// labelSearchFor
|
|
//
|
|
resources.ApplyResources(this.labelSearchFor, "labelSearchFor");
|
|
this.labelSearchFor.Name = "labelSearchFor";
|
|
//
|
|
// radioButtonFreeReplace
|
|
//
|
|
resources.ApplyResources(this.radioButtonFreeReplace, "radioButtonFreeReplace");
|
|
this.radioButtonFreeReplace.Name = "radioButtonFreeReplace";
|
|
this.radioButtonFreeReplace.TabStop = true;
|
|
this.radioButtonFreeReplace.UseVisualStyleBackColor = true;
|
|
this.radioButtonFreeReplace.CheckedChanged += new System.EventHandler(this.radioButtonFreeReplace_CheckedChanged);
|
|
//
|
|
// radioButtonSpaceToHyphen
|
|
//
|
|
resources.ApplyResources(this.radioButtonSpaceToHyphen, "radioButtonSpaceToHyphen");
|
|
this.radioButtonSpaceToHyphen.Name = "radioButtonSpaceToHyphen";
|
|
this.radioButtonSpaceToHyphen.UseVisualStyleBackColor = true;
|
|
this.radioButtonSpaceToHyphen.CheckedChanged += new System.EventHandler(this.radioButtonSpaceToHyphen_CheckedChanged);
|
|
//
|
|
// radioButtonHyphenToSpace
|
|
//
|
|
resources.ApplyResources(this.radioButtonHyphenToSpace, "radioButtonHyphenToSpace");
|
|
this.radioButtonHyphenToSpace.Name = "radioButtonHyphenToSpace";
|
|
this.radioButtonHyphenToSpace.UseVisualStyleBackColor = true;
|
|
this.radioButtonHyphenToSpace.CheckedChanged += new System.EventHandler(this.radioButtonHyphenToSpace_CheckedChanged);
|
|
//
|
|
// radioButtonSpaceToUnderline
|
|
//
|
|
resources.ApplyResources(this.radioButtonSpaceToUnderline, "radioButtonSpaceToUnderline");
|
|
this.radioButtonSpaceToUnderline.Name = "radioButtonSpaceToUnderline";
|
|
this.radioButtonSpaceToUnderline.UseVisualStyleBackColor = true;
|
|
this.radioButtonSpaceToUnderline.CheckedChanged += new System.EventHandler(this.radioButtonSpaceToUnderline_CheckedChanged);
|
|
//
|
|
// radioButtonUnderlineToSpace
|
|
//
|
|
resources.ApplyResources(this.radioButtonUnderlineToSpace, "radioButtonUnderlineToSpace");
|
|
this.radioButtonUnderlineToSpace.Name = "radioButtonUnderlineToSpace";
|
|
this.radioButtonUnderlineToSpace.UseVisualStyleBackColor = true;
|
|
this.radioButtonUnderlineToSpace.CheckedChanged += new System.EventHandler(this.radioButtonUnderlineToSpace_CheckedChanged);
|
|
//
|
|
// radioButtonReverseCharacter
|
|
//
|
|
resources.ApplyResources(this.radioButtonReverseCharacter, "radioButtonReverseCharacter");
|
|
this.radioButtonReverseCharacter.Name = "radioButtonReverseCharacter";
|
|
this.radioButtonReverseCharacter.UseVisualStyleBackColor = true;
|
|
this.radioButtonReverseCharacter.CheckedChanged += new System.EventHandler(this.radioButtonReverseCharacter_CheckedChanged);
|
|
//
|
|
// radioButtonProperCaseLast
|
|
//
|
|
resources.ApplyResources(this.radioButtonProperCaseLast, "radioButtonProperCaseLast");
|
|
this.radioButtonProperCaseLast.Name = "radioButtonProperCaseLast";
|
|
this.radioButtonProperCaseLast.UseVisualStyleBackColor = true;
|
|
this.radioButtonProperCaseLast.CheckedChanged += new System.EventHandler(this.radioButtonProperCaseLast_CheckedChanged);
|
|
//
|
|
// radioButtonProperCase
|
|
//
|
|
resources.ApplyResources(this.radioButtonProperCase, "radioButtonProperCase");
|
|
this.radioButtonProperCase.Name = "radioButtonProperCase";
|
|
this.radioButtonProperCase.UseVisualStyleBackColor = true;
|
|
this.radioButtonProperCase.CheckedChanged += new System.EventHandler(this.radioButtonProperCase_CheckedChanged);
|
|
//
|
|
// radioButtonLowerCase
|
|
//
|
|
resources.ApplyResources(this.radioButtonLowerCase, "radioButtonLowerCase");
|
|
this.radioButtonLowerCase.Name = "radioButtonLowerCase";
|
|
this.radioButtonLowerCase.UseVisualStyleBackColor = true;
|
|
this.radioButtonLowerCase.CheckedChanged += new System.EventHandler(this.radioButtonLowerCase_CheckedChanged);
|
|
//
|
|
// radioButtonUpperCase
|
|
//
|
|
resources.ApplyResources(this.radioButtonUpperCase, "radioButtonUpperCase");
|
|
this.radioButtonUpperCase.Checked = true;
|
|
this.radioButtonUpperCase.Name = "radioButtonUpperCase";
|
|
this.radioButtonUpperCase.TabStop = true;
|
|
this.radioButtonUpperCase.UseVisualStyleBackColor = true;
|
|
this.radioButtonUpperCase.CheckedChanged += new System.EventHandler(this.radioButtonUpperCase_CheckedChanged);
|
|
//
|
|
// groupBoxReport
|
|
//
|
|
this.groupBoxReport.Controls.Add(this.checkBoxOverwrite);
|
|
this.groupBoxReport.Controls.Add(this.checkBoxSave);
|
|
resources.ApplyResources(this.groupBoxReport, "groupBoxReport");
|
|
this.groupBoxReport.Name = "groupBoxReport";
|
|
this.groupBoxReport.TabStop = false;
|
|
//
|
|
// checkBoxOverwrite
|
|
//
|
|
resources.ApplyResources(this.checkBoxOverwrite, "checkBoxOverwrite");
|
|
this.checkBoxOverwrite.Name = "checkBoxOverwrite";
|
|
this.checkBoxOverwrite.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBoxSave
|
|
//
|
|
resources.ApplyResources(this.checkBoxSave, "checkBoxSave");
|
|
this.checkBoxSave.Name = "checkBoxSave";
|
|
this.checkBoxSave.UseVisualStyleBackColor = true;
|
|
this.checkBoxSave.CheckedChanged += new System.EventHandler(this.checkBoxSave_CheckedChanged);
|
|
//
|
|
// progressBarStatus
|
|
//
|
|
resources.ApplyResources(this.progressBarStatus, "progressBarStatus");
|
|
this.progressBarStatus.Name = "progressBarStatus";
|
|
//
|
|
// buttonPreview
|
|
//
|
|
resources.ApplyResources(this.buttonPreview, "buttonPreview");
|
|
this.buttonPreview.Name = "buttonPreview";
|
|
this.buttonPreview.UseVisualStyleBackColor = true;
|
|
this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click);
|
|
//
|
|
// buttonConvert
|
|
//
|
|
resources.ApplyResources(this.buttonConvert, "buttonConvert");
|
|
this.buttonConvert.Name = "buttonConvert";
|
|
this.buttonConvert.UseVisualStyleBackColor = true;
|
|
this.buttonConvert.Click += new System.EventHandler(this.buttonConvert_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// backgroundWorker
|
|
//
|
|
this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
|
|
this.backgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_ProgressChanged);
|
|
this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonConvert);
|
|
this.Controls.Add(this.buttonPreview);
|
|
this.Controls.Add(this.progressBarStatus);
|
|
this.Controls.Add(this.groupBoxReport);
|
|
this.Controls.Add(this.groupBoxFunction);
|
|
this.Controls.Add(this.groupBoxConvert);
|
|
this.Controls.Add(this.groupBoxDirectory);
|
|
this.Controls.Add(this.menuStrip);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MainMenuStrip = this.menuStrip;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.menuStrip.ResumeLayout(false);
|
|
this.menuStrip.PerformLayout();
|
|
this.groupBoxDirectory.ResumeLayout(false);
|
|
this.groupBoxDirectory.PerformLayout();
|
|
this.groupBoxConvert.ResumeLayout(false);
|
|
this.groupBoxConvert.PerformLayout();
|
|
this.groupBoxFunction.ResumeLayout(false);
|
|
this.groupBoxFunction.PerformLayout();
|
|
this.groupBoxReport.ResumeLayout(false);
|
|
this.groupBoxReport.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem1;
|
|
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem languageToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem germanToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem englishToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem actionToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem previewToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem convertToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem cancelToolStripMenuItem;
|
|
private System.Windows.Forms.GroupBox groupBoxDirectory;
|
|
private System.Windows.Forms.Button buttonDirectory;
|
|
private System.Windows.Forms.TextBox textBoxDirectory;
|
|
private System.Windows.Forms.GroupBox groupBoxConvert;
|
|
private System.Windows.Forms.CheckBox checkBoxSubdirectories;
|
|
private System.Windows.Forms.TextBox textBoxExtension;
|
|
private System.Windows.Forms.Label labelExtension;
|
|
private System.Windows.Forms.GroupBox groupBoxFunction;
|
|
private System.Windows.Forms.RadioButton radioButtonReverseCharacter;
|
|
private System.Windows.Forms.RadioButton radioButtonProperCaseLast;
|
|
private System.Windows.Forms.RadioButton radioButtonProperCase;
|
|
private System.Windows.Forms.RadioButton radioButtonLowerCase;
|
|
private System.Windows.Forms.RadioButton radioButtonUpperCase;
|
|
private System.Windows.Forms.RadioButton radioButtonSpaceToUnderline;
|
|
private System.Windows.Forms.RadioButton radioButtonUnderlineToSpace;
|
|
private System.Windows.Forms.RadioButton radioButtonSpaceToHyphen;
|
|
private System.Windows.Forms.RadioButton radioButtonHyphenToSpace;
|
|
private System.Windows.Forms.GroupBox groupBoxReport;
|
|
private System.Windows.Forms.CheckBox checkBoxSave;
|
|
private System.Windows.Forms.CheckBox checkBoxOverwrite;
|
|
private System.Windows.Forms.ProgressBar progressBarStatus;
|
|
private System.Windows.Forms.Button buttonPreview;
|
|
private System.Windows.Forms.Button buttonConvert;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Label labelReplaceThrough;
|
|
private System.Windows.Forms.Label labelSearchFor;
|
|
private System.Windows.Forms.RadioButton radioButtonFreeReplace;
|
|
private System.Windows.Forms.TextBox textBoxReplaceThrough;
|
|
private System.Windows.Forms.TextBox textBoxSearchFor;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker;
|
|
private System.Windows.Forms.CheckBox checkBoxFiles;
|
|
private System.Windows.Forms.CheckBox checkBoxDirectories;
|
|
}
|
|
}
|
|
|