180 lines
8.2 KiB
C#
180 lines
8.2 KiB
C#
namespace SearchFindReplace
|
|
{
|
|
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.textBoxText = new System.Windows.Forms.TextBox();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.radioButtonEnglish = new System.Windows.Forms.RadioButton();
|
|
this.radioButtonGerman = new System.Windows.Forms.RadioButton();
|
|
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
|
this.spracheToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.deutschToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.englischToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.labelDllInfo = new System.Windows.Forms.Label();
|
|
this.groupBoxDll = new System.Windows.Forms.GroupBox();
|
|
this.buttonCheckLanguage = new System.Windows.Forms.Button();
|
|
this.replace1 = new Eugen.ESystem.Windows.Forms.Replace();
|
|
this.search1 = new Eugen.ESystem.Windows.Forms.Search();
|
|
this.groupBox1.SuspendLayout();
|
|
this.menuStrip.SuspendLayout();
|
|
this.groupBoxDll.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBoxText
|
|
//
|
|
resources.ApplyResources(this.textBoxText, "textBoxText");
|
|
this.textBoxText.Name = "textBoxText";
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.radioButtonEnglish);
|
|
this.groupBox1.Controls.Add(this.radioButtonGerman);
|
|
resources.ApplyResources(this.groupBox1, "groupBox1");
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// radioButtonEnglish
|
|
//
|
|
resources.ApplyResources(this.radioButtonEnglish, "radioButtonEnglish");
|
|
this.radioButtonEnglish.Name = "radioButtonEnglish";
|
|
this.radioButtonEnglish.UseVisualStyleBackColor = true;
|
|
this.radioButtonEnglish.CheckedChanged += new System.EventHandler(this.radioButtonEnglish_CheckedChanged);
|
|
//
|
|
// radioButtonGerman
|
|
//
|
|
resources.ApplyResources(this.radioButtonGerman, "radioButtonGerman");
|
|
this.radioButtonGerman.Checked = true;
|
|
this.radioButtonGerman.Name = "radioButtonGerman";
|
|
this.radioButtonGerman.TabStop = true;
|
|
this.radioButtonGerman.UseVisualStyleBackColor = true;
|
|
this.radioButtonGerman.CheckedChanged += new System.EventHandler(this.radioButtonGerman_CheckedChanged);
|
|
//
|
|
// menuStrip
|
|
//
|
|
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.spracheToolStripMenuItem});
|
|
resources.ApplyResources(this.menuStrip, "menuStrip");
|
|
this.menuStrip.Name = "menuStrip";
|
|
//
|
|
// spracheToolStripMenuItem
|
|
//
|
|
this.spracheToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.deutschToolStripMenuItem,
|
|
this.englischToolStripMenuItem});
|
|
this.spracheToolStripMenuItem.Name = "spracheToolStripMenuItem";
|
|
resources.ApplyResources(this.spracheToolStripMenuItem, "spracheToolStripMenuItem");
|
|
//
|
|
// deutschToolStripMenuItem
|
|
//
|
|
this.deutschToolStripMenuItem.Checked = true;
|
|
this.deutschToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.deutschToolStripMenuItem.Name = "deutschToolStripMenuItem";
|
|
resources.ApplyResources(this.deutschToolStripMenuItem, "deutschToolStripMenuItem");
|
|
this.deutschToolStripMenuItem.Click += new System.EventHandler(this.deutschToolStripMenuItem1_Click);
|
|
//
|
|
// englischToolStripMenuItem
|
|
//
|
|
this.englischToolStripMenuItem.Name = "englischToolStripMenuItem";
|
|
resources.ApplyResources(this.englischToolStripMenuItem, "englischToolStripMenuItem");
|
|
this.englischToolStripMenuItem.Click += new System.EventHandler(this.englischToolStripMenuItem_Click);
|
|
//
|
|
// labelDllInfo
|
|
//
|
|
resources.ApplyResources(this.labelDllInfo, "labelDllInfo");
|
|
this.labelDllInfo.Name = "labelDllInfo";
|
|
//
|
|
// groupBoxDll
|
|
//
|
|
this.groupBoxDll.Controls.Add(this.labelDllInfo);
|
|
resources.ApplyResources(this.groupBoxDll, "groupBoxDll");
|
|
this.groupBoxDll.Name = "groupBoxDll";
|
|
this.groupBoxDll.TabStop = false;
|
|
//
|
|
// buttonCheckLanguage
|
|
//
|
|
resources.ApplyResources(this.buttonCheckLanguage, "buttonCheckLanguage");
|
|
this.buttonCheckLanguage.Name = "buttonCheckLanguage";
|
|
this.buttonCheckLanguage.UseVisualStyleBackColor = true;
|
|
this.buttonCheckLanguage.Click += new System.EventHandler(this.buttonCheckLanguage_Click);
|
|
//
|
|
// replace1
|
|
//
|
|
resources.ApplyResources(this.replace1, "replace1");
|
|
this.replace1.Name = "replace1";
|
|
//
|
|
// search1
|
|
//
|
|
resources.ApplyResources(this.search1, "search1");
|
|
this.search1.Name = "search1";
|
|
//
|
|
// Form1
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonCheckLanguage);
|
|
this.Controls.Add(this.groupBoxDll);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.replace1);
|
|
this.Controls.Add(this.search1);
|
|
this.Controls.Add(this.textBoxText);
|
|
this.Controls.Add(this.menuStrip);
|
|
this.MainMenuStrip = this.menuStrip;
|
|
this.Name = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.menuStrip.ResumeLayout(false);
|
|
this.menuStrip.PerformLayout();
|
|
this.groupBoxDll.ResumeLayout(false);
|
|
this.groupBoxDll.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBoxText;
|
|
private Eugen.ESystem.Windows.Forms.Search search1;
|
|
private Eugen.ESystem.Windows.Forms.Replace replace1;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.RadioButton radioButtonEnglish;
|
|
private System.Windows.Forms.RadioButton radioButtonGerman;
|
|
private System.Windows.Forms.MenuStrip menuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem spracheToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem deutschToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem englischToolStripMenuItem;
|
|
private System.Windows.Forms.Label labelDllInfo;
|
|
private System.Windows.Forms.GroupBox groupBoxDll;
|
|
private System.Windows.Forms.Button buttonCheckLanguage;
|
|
}
|
|
}
|
|
|