128 lines
5.7 KiB
C#
128 lines
5.7 KiB
C#
namespace Test_VererbungUserControl
|
|
{
|
|
partial class UserControl1
|
|
{
|
|
/// <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()
|
|
{
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.buttonUp = new System.Windows.Forms.Button();
|
|
this.buttonDown = new System.Windows.Forms.Button();
|
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|
this.buttonRemove = new System.Windows.Forms.Button();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBox1.Enabled = false;
|
|
this.textBox1.Location = new System.Drawing.Point(4, 4);
|
|
this.textBox1.Multiline = true;
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(312, 81);
|
|
this.textBox1.TabIndex = 0;
|
|
//
|
|
// buttonUp
|
|
//
|
|
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonUp.Location = new System.Drawing.Point(322, 4);
|
|
this.buttonUp.Name = "buttonUp";
|
|
this.buttonUp.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonUp.TabIndex = 1;
|
|
this.buttonUp.Text = "Up";
|
|
this.buttonUp.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonDown
|
|
//
|
|
this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonDown.Location = new System.Drawing.Point(322, 33);
|
|
this.buttonDown.Name = "buttonDown";
|
|
this.buttonDown.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDown.TabIndex = 2;
|
|
this.buttonDown.Text = "Down";
|
|
this.buttonDown.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
this.buttonAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonAdd.Location = new System.Drawing.Point(322, 62);
|
|
this.buttonAdd.Name = "buttonAdd";
|
|
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonAdd.TabIndex = 3;
|
|
this.buttonAdd.Text = "Add";
|
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonRemove
|
|
//
|
|
this.buttonRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonRemove.Location = new System.Drawing.Point(322, 91);
|
|
this.buttonRemove.Name = "buttonRemove";
|
|
this.buttonRemove.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonRemove.TabIndex = 4;
|
|
this.buttonRemove.Text = "Remove";
|
|
this.buttonRemove.UseVisualStyleBackColor = true;
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Location = new System.Drawing.Point(4, 92);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(312, 21);
|
|
this.comboBox1.TabIndex = 5;
|
|
//
|
|
// UserControl1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.comboBox1);
|
|
this.Controls.Add(this.buttonRemove);
|
|
this.Controls.Add(this.buttonAdd);
|
|
this.Controls.Add(this.buttonDown);
|
|
this.Controls.Add(this.buttonUp);
|
|
this.Controls.Add(this.textBox1);
|
|
this.MinimumSize = new System.Drawing.Size(300, 117);
|
|
this.Name = "UserControl1";
|
|
this.Size = new System.Drawing.Size(400, 117);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Button buttonUp;
|
|
private System.Windows.Forms.Button buttonDown;
|
|
private System.Windows.Forms.Button buttonAdd;
|
|
private System.Windows.Forms.Button buttonRemove;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
}
|
|
}
|