117 lines
5.4 KiB
C#
117 lines
5.4 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class Search
|
|
{
|
|
/// <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(Search));
|
|
this.groupBoxSearchAndFind = new System.Windows.Forms.GroupBox();
|
|
this.buttonNextMatch = new System.Windows.Forms.Button();
|
|
this.buttonPreviousMatch = new System.Windows.Forms.Button();
|
|
this.checkBoxEntireWord = new System.Windows.Forms.CheckBox();
|
|
this.checkBoxCase = new System.Windows.Forms.CheckBox();
|
|
this.textBoxSearchString = new System.Windows.Forms.TextBox();
|
|
this.labelSearchString = new System.Windows.Forms.Label();
|
|
this.groupBoxSearchAndFind.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBoxSearchAndFind
|
|
//
|
|
resources.ApplyResources(this.groupBoxSearchAndFind, "groupBoxSearchAndFind");
|
|
this.groupBoxSearchAndFind.Controls.Add(this.buttonNextMatch);
|
|
this.groupBoxSearchAndFind.Controls.Add(this.buttonPreviousMatch);
|
|
this.groupBoxSearchAndFind.Controls.Add(this.checkBoxEntireWord);
|
|
this.groupBoxSearchAndFind.Controls.Add(this.checkBoxCase);
|
|
this.groupBoxSearchAndFind.Controls.Add(this.textBoxSearchString);
|
|
this.groupBoxSearchAndFind.Controls.Add(this.labelSearchString);
|
|
this.groupBoxSearchAndFind.Name = "groupBoxSearchAndFind";
|
|
this.groupBoxSearchAndFind.TabStop = false;
|
|
//
|
|
// buttonNextMatch
|
|
//
|
|
resources.ApplyResources(this.buttonNextMatch, "buttonNextMatch");
|
|
this.buttonNextMatch.Name = "buttonNextMatch";
|
|
this.buttonNextMatch.UseVisualStyleBackColor = true;
|
|
this.buttonNextMatch.Click += new System.EventHandler(this.buttonNextMatch_Click);
|
|
//
|
|
// buttonPreviousMatch
|
|
//
|
|
resources.ApplyResources(this.buttonPreviousMatch, "buttonPreviousMatch");
|
|
this.buttonPreviousMatch.Name = "buttonPreviousMatch";
|
|
this.buttonPreviousMatch.UseVisualStyleBackColor = true;
|
|
this.buttonPreviousMatch.Click += new System.EventHandler(this.buttonPreviousMatch_Click);
|
|
//
|
|
// checkBoxEntireWord
|
|
//
|
|
resources.ApplyResources(this.checkBoxEntireWord, "checkBoxEntireWord");
|
|
this.checkBoxEntireWord.Name = "checkBoxEntireWord";
|
|
this.checkBoxEntireWord.UseVisualStyleBackColor = true;
|
|
this.checkBoxEntireWord.CheckedChanged += new System.EventHandler(this.checkBoxEntireWord_CheckedChanged);
|
|
//
|
|
// checkBoxCase
|
|
//
|
|
resources.ApplyResources(this.checkBoxCase, "checkBoxCase");
|
|
this.checkBoxCase.Name = "checkBoxCase";
|
|
this.checkBoxCase.UseVisualStyleBackColor = true;
|
|
this.checkBoxCase.CheckedChanged += new System.EventHandler(this.checkBoxCase_CheckedChanged);
|
|
//
|
|
// textBoxSearchString
|
|
//
|
|
resources.ApplyResources(this.textBoxSearchString, "textBoxSearchString");
|
|
this.textBoxSearchString.Name = "textBoxSearchString";
|
|
this.textBoxSearchString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxSearchString_KeyDown);
|
|
this.textBoxSearchString.Leave += new System.EventHandler(this.textBoxSearchString_Leave);
|
|
//
|
|
// labelSearchString
|
|
//
|
|
resources.ApplyResources(this.labelSearchString, "labelSearchString");
|
|
this.labelSearchString.Name = "labelSearchString";
|
|
//
|
|
// Search
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.groupBoxSearchAndFind);
|
|
this.Name = "Search";
|
|
this.groupBoxSearchAndFind.ResumeLayout(false);
|
|
this.groupBoxSearchAndFind.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBoxSearchAndFind;
|
|
private System.Windows.Forms.Button buttonNextMatch;
|
|
private System.Windows.Forms.Button buttonPreviousMatch;
|
|
private System.Windows.Forms.CheckBox checkBoxEntireWord;
|
|
private System.Windows.Forms.CheckBox checkBoxCase;
|
|
private System.Windows.Forms.TextBox textBoxSearchString;
|
|
private System.Windows.Forms.Label labelSearchString;
|
|
}
|
|
}
|