Files
EmployeeDbApp/WinForms/EmployeeDirectory.Designer.cs
2023-10-02 08:24:46 +02:00

76 lines
2.5 KiB
C#

namespace WinForms
{
partial class EmployeeDirectory
{
/// <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()
{
formHeader = new Label();
employeeList = new ListBox();
SuspendLayout();
//
// formHeader
//
formHeader.AutoSize = true;
formHeader.Font = new Font("Segoe UI", 36F, FontStyle.Bold, GraphicsUnit.Point);
formHeader.Location = new Point(56, 53);
formHeader.Name = "formHeader";
formHeader.Size = new Size(341, 65);
formHeader.TabIndex = 0;
formHeader.Text = "Employee List";
formHeader.Click += label1_Click;
//
// employeeList
//
employeeList.FormattingEnabled = true;
employeeList.ItemHeight = 32;
employeeList.Location = new Point(68, 146);
employeeList.Name = "employeeList";
employeeList.Size = new Size(391, 292);
employeeList.TabIndex = 1;
//
// EmployeeDirectory
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(737, 478);
Controls.Add(employeeList);
Controls.Add(formHeader);
Font = new Font("Segoe UI", 18F, FontStyle.Regular, GraphicsUnit.Point);
Margin = new Padding(6);
Name = "EmployeeDirectory";
Text = "Employee Directory";
Load += EmployeeDirectory_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label formHeader;
private ListBox employeeList;
}
}