82 lines
3.0 KiB
C#
82 lines
3.0 KiB
C#
namespace Test_VererbungUserControl
|
|
{
|
|
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()
|
|
{
|
|
this.userControl21 = new Test_VererbungUserControl.UserControl2();
|
|
this.userControl11 = new Test_VererbungUserControl.UserControl1();
|
|
this.userControl31 = new Test_VererbungUserControl.UserControl3();
|
|
this.SuspendLayout();
|
|
//
|
|
// userControl21
|
|
//
|
|
this.userControl21.Location = new System.Drawing.Point(13, 137);
|
|
this.userControl21.MinimumSize = new System.Drawing.Size(300, 117);
|
|
this.userControl21.Name = "userControl21";
|
|
this.userControl21.Size = new System.Drawing.Size(350, 117);
|
|
this.userControl21.TabIndex = 1;
|
|
//
|
|
// userControl11
|
|
//
|
|
this.userControl11.Location = new System.Drawing.Point(13, 13);
|
|
this.userControl11.MinimumSize = new System.Drawing.Size(300, 117);
|
|
this.userControl11.Name = "userControl11";
|
|
this.userControl11.Size = new System.Drawing.Size(400, 117);
|
|
this.userControl11.TabIndex = 0;
|
|
//
|
|
// userControl31
|
|
//
|
|
this.userControl31.Location = new System.Drawing.Point(13, 261);
|
|
this.userControl31.MinimumSize = new System.Drawing.Size(300, 117);
|
|
this.userControl31.Name = "userControl31";
|
|
this.userControl31.Size = new System.Drawing.Size(400, 117);
|
|
this.userControl31.TabIndex = 2;
|
|
//
|
|
// 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.userControl31);
|
|
this.Controls.Add(this.userControl21);
|
|
this.Controls.Add(this.userControl11);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private UserControl1 userControl11;
|
|
private UserControl2 userControl21;
|
|
private UserControl3 userControl31;
|
|
}
|
|
}
|
|
|