Zeiterfassung.AddWorkerToProject.InitializeComponent C# (CSharp) Метод

InitializeComponent() приватный Метод

Erforderliche Methode für die Designerunterstützung. Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
private InitializeComponent ( ) : void
Результат void
        private void InitializeComponent()
        {
			this.arbeiterListe = new System.Windows.Forms.CheckedListBox();
			this.AddWorkers = new System.Windows.Forms.Button();
			this.Abort = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// arbeiterListe
			// 
			this.arbeiterListe.CheckOnClick = true;
			this.arbeiterListe.FormattingEnabled = true;
			this.arbeiterListe.Location = new System.Drawing.Point(15, 32);
			this.arbeiterListe.Name = "arbeiterListe";
			this.arbeiterListe.Size = new System.Drawing.Size(405, 169);
			this.arbeiterListe.TabIndex = 0;
			// 
			// AddWorkers
			// 
			this.AddWorkers.Location = new System.Drawing.Point(48, 215);
			this.AddWorkers.Name = "AddWorkers";
			this.AddWorkers.Size = new System.Drawing.Size(162, 31);
			this.AddWorkers.TabIndex = 1;
			this.AddWorkers.Text = "OK";
			this.AddWorkers.UseVisualStyleBackColor = true;
			this.AddWorkers.Click += new System.EventHandler(this.AddWorkers_Click);
			// 
			// Abort
			// 
			this.Abort.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.Abort.Location = new System.Drawing.Point(216, 215);
			this.Abort.Name = "Abort";
			this.Abort.Size = new System.Drawing.Size(171, 31);
			this.Abort.TabIndex = 2;
			this.Abort.Text = "Abbrechen";
			this.Abort.UseVisualStyleBackColor = true;
			this.Abort.Click += new System.EventHandler(this.Abort_Click);
			// 
			// AddWorkerToProject
			// 
			this.AcceptButton = this.AddWorkers;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.Abort;
			this.ClientSize = new System.Drawing.Size(432, 258);
			this.Controls.Add(this.Abort);
			this.Controls.Add(this.AddWorkers);
			this.Controls.Add(this.arbeiterListe);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "AddWorkerToProject";
			this.Text = "Mitarbeiter zuweisen";
			this.ResumeLayout(false);

        }