namespace Test_SearchAndFind { partial class Form1 { /// /// Erforderliche Designervariable. /// private System.ComponentModel.IContainer components = null; /// /// Verwendete Ressourcen bereinigen. /// /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Vom Windows Form-Designer generierter Code /// /// Erforderliche Methode für die Designerunterstützung. /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.textBoxText = new System.Windows.Forms.TextBox(); this.groupBoxSearchAndFind = new System.Windows.Forms.GroupBox(); this.checkBoxFullword = new System.Windows.Forms.CheckBox(); this.checkBoxCase = new System.Windows.Forms.CheckBox(); this.buttonPrevious = new System.Windows.Forms.Button(); this.buttonNext = new System.Windows.Forms.Button(); this.textBoxSearchstring = new System.Windows.Forms.TextBox(); this.labelSearchstring = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.buttonReplaceAll = new System.Windows.Forms.Button(); this.buttonReplace = new System.Windows.Forms.Button(); this.textBoxReplaceText = new System.Windows.Forms.TextBox(); this.labelReplaceText = new System.Windows.Forms.Label(); this.buttonSelectAll = new System.Windows.Forms.Button(); this.groupBoxSearchAndFind.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // textBoxText // this.textBoxText.Location = new System.Drawing.Point(12, 13); this.textBoxText.Multiline = true; this.textBoxText.Name = "textBoxText"; this.textBoxText.Size = new System.Drawing.Size(375, 425); this.textBoxText.TabIndex = 0; this.textBoxText.Text = resources.GetString("textBoxText.Text"); // // groupBoxSearchAndFind // this.groupBoxSearchAndFind.Controls.Add(this.buttonSelectAll); this.groupBoxSearchAndFind.Controls.Add(this.checkBoxFullword); this.groupBoxSearchAndFind.Controls.Add(this.checkBoxCase); this.groupBoxSearchAndFind.Controls.Add(this.buttonPrevious); this.groupBoxSearchAndFind.Controls.Add(this.buttonNext); this.groupBoxSearchAndFind.Controls.Add(this.textBoxSearchstring); this.groupBoxSearchAndFind.Controls.Add(this.labelSearchstring); this.groupBoxSearchAndFind.Location = new System.Drawing.Point(395, 13); this.groupBoxSearchAndFind.Name = "groupBoxSearchAndFind"; this.groupBoxSearchAndFind.Size = new System.Drawing.Size(393, 123); this.groupBoxSearchAndFind.TabIndex = 1; this.groupBoxSearchAndFind.TabStop = false; this.groupBoxSearchAndFind.Text = "Search and Find"; // // checkBoxFullword // this.checkBoxFullword.AutoSize = true; this.checkBoxFullword.Location = new System.Drawing.Point(6, 68); this.checkBoxFullword.Name = "checkBoxFullword"; this.checkBoxFullword.Size = new System.Drawing.Size(88, 17); this.checkBoxFullword.TabIndex = 6; this.checkBoxFullword.Text = "Ganzes Wort"; this.checkBoxFullword.UseVisualStyleBackColor = true; this.checkBoxFullword.CheckedChanged += new System.EventHandler(this.checkBoxFullword_CheckedChanged); // // checkBoxCase // this.checkBoxCase.AutoSize = true; this.checkBoxCase.Location = new System.Drawing.Point(6, 45); this.checkBoxCase.Name = "checkBoxCase"; this.checkBoxCase.Size = new System.Drawing.Size(181, 17); this.checkBoxCase.TabIndex = 5; this.checkBoxCase.Text = "Groß-/Kleinschreibung ignorieren"; this.checkBoxCase.UseVisualStyleBackColor = true; this.checkBoxCase.CheckedChanged += new System.EventHandler(this.checkBoxCase_CheckedChanged); // // buttonPrevious // this.buttonPrevious.Location = new System.Drawing.Point(6, 91); this.buttonPrevious.Name = "buttonPrevious"; this.buttonPrevious.Size = new System.Drawing.Size(91, 23); this.buttonPrevious.TabIndex = 4; this.buttonPrevious.Text = "Voriger"; this.buttonPrevious.UseVisualStyleBackColor = true; this.buttonPrevious.Click += new System.EventHandler(this.buttonPrevious_Click); // // buttonNext // this.buttonNext.Location = new System.Drawing.Point(151, 91); this.buttonNext.Name = "buttonNext"; this.buttonNext.Size = new System.Drawing.Size(91, 23); this.buttonNext.TabIndex = 3; this.buttonNext.Text = "Nächster"; this.buttonNext.UseVisualStyleBackColor = true; this.buttonNext.Click += new System.EventHandler(this.buttonNext_Click); // // textBoxSearchstring // this.textBoxSearchstring.Location = new System.Drawing.Point(61, 19); this.textBoxSearchstring.Name = "textBoxSearchstring"; this.textBoxSearchstring.Size = new System.Drawing.Size(326, 20); this.textBoxSearchstring.TabIndex = 1; this.textBoxSearchstring.TextChanged += new System.EventHandler(this.textBoxSearchstring_TextChanged); this.textBoxSearchstring.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxSearchstring_KeyDown); // // labelSearchstring // this.labelSearchstring.AutoSize = true; this.labelSearchstring.Location = new System.Drawing.Point(6, 22); this.labelSearchstring.Name = "labelSearchstring"; this.labelSearchstring.Size = new System.Drawing.Size(49, 13); this.labelSearchstring.TabIndex = 0; this.labelSearchstring.Text = "Suchtext"; // // groupBox1 // this.groupBox1.Controls.Add(this.buttonReplaceAll); this.groupBox1.Controls.Add(this.buttonReplace); this.groupBox1.Controls.Add(this.textBoxReplaceText); this.groupBox1.Controls.Add(this.labelReplaceText); this.groupBox1.Location = new System.Drawing.Point(395, 143); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(393, 77); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "Replace with"; // // buttonReplaceAll // this.buttonReplaceAll.Location = new System.Drawing.Point(296, 46); this.buttonReplaceAll.Name = "buttonReplaceAll"; this.buttonReplaceAll.Size = new System.Drawing.Size(91, 23); this.buttonReplaceAll.TabIndex = 3; this.buttonReplaceAll.Text = "Alle Ersetzen"; this.buttonReplaceAll.UseVisualStyleBackColor = true; this.buttonReplaceAll.Click += new System.EventHandler(this.buttonReplaceAll_Click); // // buttonReplace // this.buttonReplace.Location = new System.Drawing.Point(6, 46); this.buttonReplace.Name = "buttonReplace"; this.buttonReplace.Size = new System.Drawing.Size(91, 23); this.buttonReplace.TabIndex = 2; this.buttonReplace.Text = "Ersetzen"; this.buttonReplace.UseVisualStyleBackColor = true; this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click); // // textBoxReplaceText // this.textBoxReplaceText.Location = new System.Drawing.Point(65, 20); this.textBoxReplaceText.Name = "textBoxReplaceText"; this.textBoxReplaceText.Size = new System.Drawing.Size(322, 20); this.textBoxReplaceText.TabIndex = 1; this.textBoxReplaceText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxReplaceText_KeyDown); // // labelReplaceText // this.labelReplaceText.AutoSize = true; this.labelReplaceText.Location = new System.Drawing.Point(6, 23); this.labelReplaceText.Name = "labelReplaceText"; this.labelReplaceText.Size = new System.Drawing.Size(53, 13); this.labelReplaceText.TabIndex = 0; this.labelReplaceText.Text = "Ersetztext"; // // buttonSelectAll // this.buttonSelectAll.Enabled = false; this.buttonSelectAll.Location = new System.Drawing.Point(296, 91); this.buttonSelectAll.Name = "buttonSelectAll"; this.buttonSelectAll.Size = new System.Drawing.Size(91, 23); this.buttonSelectAll.TabIndex = 3; this.buttonSelectAll.Text = "Alle Auswählen"; this.buttonSelectAll.UseVisualStyleBackColor = true; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBoxSearchAndFind); this.Controls.Add(this.textBoxText); this.Name = "Form1"; this.Text = "Test_Saerch, Find and Replace"; this.Load += new System.EventHandler(this.Form1_Load); this.groupBoxSearchAndFind.ResumeLayout(false); this.groupBoxSearchAndFind.PerformLayout(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox textBoxText; private System.Windows.Forms.GroupBox groupBoxSearchAndFind; private System.Windows.Forms.Button buttonPrevious; private System.Windows.Forms.Button buttonNext; private System.Windows.Forms.TextBox textBoxSearchstring; private System.Windows.Forms.Label labelSearchstring; private System.Windows.Forms.CheckBox checkBoxCase; private System.Windows.Forms.CheckBox checkBoxFullword; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button buttonReplaceAll; private System.Windows.Forms.Button buttonReplace; private System.Windows.Forms.TextBox textBoxReplaceText; private System.Windows.Forms.Label labelReplaceText; private System.Windows.Forms.Button buttonSelectAll; } }