Programm_Wirl/AA-Forms/FormAuftragAuswahl.Designer.cs

128 lines
6.2 KiB
C#

namespace Deckungsbeitrag.AA_Forms
{
partial class FormAuftragAuswahl
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAuftragAuswahl));
this.panelAuswahl = new System.Windows.Forms.FlowLayoutPanel();
this.panelSuchen = new System.Windows.Forms.Panel();
this.buttonAbbrechen = new System.Windows.Forms.Button();
this.textBoxKunde = new System.Windows.Forms.TextBox();
this.panelSuchen.SuspendLayout();
this.SuspendLayout();
//
// panelAuswahl
//
this.panelAuswahl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panelAuswahl.AutoScroll = true;
this.panelAuswahl.AutoScrollMargin = new System.Drawing.Size(100, 100);
this.panelAuswahl.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
this.panelAuswahl.Location = new System.Drawing.Point(0, 70);
this.panelAuswahl.Margin = new System.Windows.Forms.Padding(0);
this.panelAuswahl.Name = "panelAuswahl";
this.panelAuswahl.Padding = new System.Windows.Forms.Padding(20, 20, 133, 20);
this.panelAuswahl.Size = new System.Drawing.Size(1675, 928);
this.panelAuswahl.TabIndex = 0;
//
// panelSuchen
//
this.panelSuchen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(53)))), ((int)(((byte)(101)))));
this.panelSuchen.Controls.Add(this.buttonAbbrechen);
this.panelSuchen.Controls.Add(this.textBoxKunde);
this.panelSuchen.Dock = System.Windows.Forms.DockStyle.Top;
this.panelSuchen.Location = new System.Drawing.Point(0, 0);
this.panelSuchen.Margin = new System.Windows.Forms.Padding(5);
this.panelSuchen.Name = "panelSuchen";
this.panelSuchen.Padding = new System.Windows.Forms.Padding(15);
this.panelSuchen.Size = new System.Drawing.Size(1675, 65);
this.panelSuchen.TabIndex = 1;
//
// buttonAbbrechen
//
this.buttonAbbrechen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonAbbrechen.BackColor = System.Drawing.Color.Red;
this.buttonAbbrechen.FlatAppearance.BorderSize = 0;
this.buttonAbbrechen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonAbbrechen.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonAbbrechen.ForeColor = System.Drawing.Color.Black;
this.buttonAbbrechen.Location = new System.Drawing.Point(1360, 10);
this.buttonAbbrechen.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonAbbrechen.Name = "buttonAbbrechen";
this.buttonAbbrechen.Size = new System.Drawing.Size(300, 46);
this.buttonAbbrechen.TabIndex = 2;
this.buttonAbbrechen.Text = "Eingabe Abbrechen";
this.buttonAbbrechen.UseVisualStyleBackColor = false;
this.buttonAbbrechen.Click += new System.EventHandler(this.buttonAbbrechen_Click);
//
// textBoxKunde
//
this.textBoxKunde.AccessibleName = "isAlpha";
this.textBoxKunde.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxKunde.Font = new System.Drawing.Font("Microsoft Sans Serif", 19.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textBoxKunde.ForeColor = System.Drawing.Color.Silver;
this.textBoxKunde.Location = new System.Drawing.Point(11, 10);
this.textBoxKunde.Margin = new System.Windows.Forms.Padding(11, 10, 11, 10);
this.textBoxKunde.Name = "textBoxKunde";
this.textBoxKunde.Size = new System.Drawing.Size(1333, 45);
this.textBoxKunde.TabIndex = 1;
this.textBoxKunde.Text = "Kunde suchen";
this.textBoxKunde.Click += new System.EventHandler(this.TextBoxKunde_Click);
this.textBoxKunde.TextChanged += new System.EventHandler(this.TextBoxKunde_TextChanged);
//
// FormAuftragAuswahl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1675, 998);
this.Controls.Add(this.panelSuchen);
this.Controls.Add(this.panelAuswahl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FormAuftragAuswahl";
this.Text = "Auftrag wählen";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormAuftragAuswahl_FormClosing);
this.Load += new System.EventHandler(this.FormAuftragAuswahl_Load);
this.Shown += new System.EventHandler(this.FormAuftragAuswahl_Shown);
this.panelSuchen.ResumeLayout(false);
this.panelSuchen.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.FlowLayoutPanel panelAuswahl;
private System.Windows.Forms.Panel panelSuchen;
private System.Windows.Forms.TextBox textBoxKunde;
private System.Windows.Forms.Button buttonAbbrechen;
}
}