namespace WindowsFormsApp1 { 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() { this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.extendedTB1 = new WindowsFormsApp1.Test.ExtendedTB(); this.baseTextBox1 = new WindowsFormsApp1.Test.BaseTextBox(); this.SuspendLayout(); // // button1 // this.button1.Location = new System.Drawing.Point(227, 125); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 2; this.button1.Text = "button1"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // button2 // this.button2.Location = new System.Drawing.Point(227, 200); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 27); this.button2.TabIndex = 3; this.button2.Text = "button2"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // extendedTB1 // this.extendedTB1.ForeColor = System.Drawing.Color.White; this.extendedTB1.Location = new System.Drawing.Point(216, 174); this.extendedTB1.Name = "extendedTB1"; this.extendedTB1.Size = new System.Drawing.Size(100, 20); this.extendedTB1.TabIndex = 1; // // baseTextBox1 // this.baseTextBox1.BackColor = System.Drawing.Color.DarkOrange; this.baseTextBox1.Location = new System.Drawing.Point(216, 99); this.baseTextBox1.Name = "baseTextBox1"; this.baseTextBox1.Size = new System.Drawing.Size(100, 20); this.baseTextBox1.TabIndex = 0; this.baseTextBox1.TextChanged += new System.EventHandler(this.baseTextBox1_TextChanged); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1222, 710); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.extendedTB1); this.Controls.Add(this.baseTextBox1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private Test.BaseTextBox baseTextBox1; private Test.ExtendedTB extendedTB1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; } }