namespace dbTest_02
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being
used.
/// </summary>
/// <param name="disposing">true if managed resources
should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer
generated code
/// <summary>
/// Required method for Designer
support - do not modify
/// the contents of this method
with the code editor.
/// </summary>
private void InitializeComponent()
{
this.lblListe = new System.Windows.Forms.Label();
this.lstAutos = new System.Windows.Forms.ListBox();
this.tbxEingabe = new System.Windows.Forms.TextBox();
this.btnAdd = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblListe
//
this.lblListe.AutoSize = true;
this.lblListe.Location = new System.Drawing.Point(27, 22);
this.lblListe.Name = "lblListe";
this.lblListe.Size = new System.Drawing.Size(44, 17);
this.lblListe.TabIndex = 0;
this.lblListe.Text = "Autos";
//
// lstAutos
//
this.lstAutos.FormattingEnabled = true;
this.lstAutos.ItemHeight = 16;
this.lstAutos.Location = new System.Drawing.Point(27, 42);
this.lstAutos.Name = "lstAutos";
this.lstAutos.Size = new System.Drawing.Size(168, 244);
this.lstAutos.TabIndex = 1;
this.lstAutos.SelectedIndexChanged += new System.EventHandler(this.lstAutos_SelectedIndexChanged);
//
// tbxEingabe
//
this.tbxEingabe.Location = new System.Drawing.Point(222, 39);
this.tbxEingabe.Name = "tbxEingabe";
this.tbxEingabe.Size = new System.Drawing.Size(131, 22);
this.tbxEingabe.TabIndex = 2;
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(222, 74);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(112, 38);
this.btnAdd.TabIndex = 3;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(222, 118);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(112, 38);
this.btnDelete.TabIndex = 3;
this.btnDelete.Text = "Delete";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(222, 162);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(112, 38);
this.btnUpdate.TabIndex = 3;
this.btnUpdate.Text = "Update";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(387, 337);
this.Controls.Add(this.btnUpdate);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.tbxEingabe);
this.Controls.Add(this.lstAutos);
this.Controls.Add(this.lblListe);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblListe;
private System.Windows.Forms.ListBox lstAutos;
private System.Windows.Forms.TextBox tbxEingabe;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Button btnUpdate;
}
}
|