97 lines
4.2 KiB
C#
97 lines
4.2 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class Replace
|
|
{
|
|
/// <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 Komponenten-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(Replace));
|
|
this.groupBoxReplace = new System.Windows.Forms.GroupBox();
|
|
this.buttonReplaceAll = new System.Windows.Forms.Button();
|
|
this.buttonReplace = new System.Windows.Forms.Button();
|
|
this.textBoxSubstituteString = new System.Windows.Forms.TextBox();
|
|
this.labelSubstituteString = new System.Windows.Forms.Label();
|
|
this.groupBoxReplace.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBoxReplace
|
|
//
|
|
resources.ApplyResources(this.groupBoxReplace, "groupBoxReplace");
|
|
this.groupBoxReplace.Controls.Add(this.buttonReplaceAll);
|
|
this.groupBoxReplace.Controls.Add(this.buttonReplace);
|
|
this.groupBoxReplace.Controls.Add(this.textBoxSubstituteString);
|
|
this.groupBoxReplace.Controls.Add(this.labelSubstituteString);
|
|
this.groupBoxReplace.Name = "groupBoxReplace";
|
|
this.groupBoxReplace.TabStop = false;
|
|
//
|
|
// buttonReplaceAll
|
|
//
|
|
resources.ApplyResources(this.buttonReplaceAll, "buttonReplaceAll");
|
|
this.buttonReplaceAll.Name = "buttonReplaceAll";
|
|
this.buttonReplaceAll.UseVisualStyleBackColor = true;
|
|
this.buttonReplaceAll.Click += new System.EventHandler(this.buttonReplaceAll_Click);
|
|
//
|
|
// buttonReplace
|
|
//
|
|
resources.ApplyResources(this.buttonReplace, "buttonReplace");
|
|
this.buttonReplace.Name = "buttonReplace";
|
|
this.buttonReplace.UseVisualStyleBackColor = true;
|
|
this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click);
|
|
//
|
|
// textBoxSubstituteString
|
|
//
|
|
resources.ApplyResources(this.textBoxSubstituteString, "textBoxSubstituteString");
|
|
this.textBoxSubstituteString.Name = "textBoxSubstituteString";
|
|
this.textBoxSubstituteString.Click += new System.EventHandler(this.textBoxSubstituteString_Click);
|
|
this.textBoxSubstituteString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxSubstituteString_KeyDown);
|
|
//
|
|
// labelSubstituteString
|
|
//
|
|
resources.ApplyResources(this.labelSubstituteString, "labelSubstituteString");
|
|
this.labelSubstituteString.Name = "labelSubstituteString";
|
|
//
|
|
// Replace
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBoxReplace);
|
|
this.Name = "Replace";
|
|
this.groupBoxReplace.ResumeLayout(false);
|
|
this.groupBoxReplace.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBoxReplace;
|
|
private System.Windows.Forms.TextBox textBoxSubstituteString;
|
|
private System.Windows.Forms.Label labelSubstituteString;
|
|
private System.Windows.Forms.Button buttonReplaceAll;
|
|
private System.Windows.Forms.Button buttonReplace;
|
|
}
|
|
}
|