PIbd-24_Pruidze.I.K_DBproje.../LibraryDBproject/LDBproj/AdditionalForms/EmployeeF.Designer.cs

129 lines
4.6 KiB
C#

namespace LDBproject.AdditionalForms
{
partial class EmployeeF
{
/// <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()
{
FullNameLabel = new Label();
FIOEnterTb = new TextBox();
GenreLabel = new Label();
SaveBtn = new Button();
CancelBtn = new Button();
GenresCheckedBL = new CheckedListBox();
SuspendLayout();
//
// FullNameLabel
//
FullNameLabel.AutoSize = true;
FullNameLabel.Location = new Point(23, 25);
FullNameLabel.Name = "FullNameLabel";
FullNameLabel.Size = new Size(138, 25);
FullNameLabel.TabIndex = 0;
FullNameLabel.Text = "Full Name (FIO):";
//
// FIOEnterTb
//
FIOEnterTb.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
FIOEnterTb.ForeColor = Color.MidnightBlue;
FIOEnterTb.Location = new Point(167, 22);
FIOEnterTb.Name = "FIOEnterTb";
FIOEnterTb.Size = new Size(456, 31);
FIOEnterTb.TabIndex = 1;
//
// GenreLabel
//
GenreLabel.AutoSize = true;
GenreLabel.Location = new Point(23, 77);
GenreLabel.Name = "GenreLabel";
GenreLabel.Size = new Size(70, 25);
GenreLabel.TabIndex = 2;
GenreLabel.Text = "Genres:";
//
// SaveBtn
//
SaveBtn.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
SaveBtn.ForeColor = Color.DarkSlateBlue;
SaveBtn.Location = new Point(379, 131);
SaveBtn.Name = "SaveBtn";
SaveBtn.Size = new Size(112, 34);
SaveBtn.TabIndex = 4;
SaveBtn.Text = "Save";
SaveBtn.UseVisualStyleBackColor = true;
SaveBtn.Click += SaveBtn_Click;
//
// CancelBtn
//
CancelBtn.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
CancelBtn.ForeColor = Color.DarkSlateBlue;
CancelBtn.Location = new Point(497, 131);
CancelBtn.Name = "CancelBtn";
CancelBtn.Size = new Size(126, 34);
CancelBtn.TabIndex = 5;
CancelBtn.Text = "Cancel";
CancelBtn.UseVisualStyleBackColor = true;
CancelBtn.Click += CancelBtn_Click;
//
// GenresCheckedBL
//
GenresCheckedBL.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
GenresCheckedBL.ForeColor = Color.MidnightBlue;
GenresCheckedBL.FormattingEnabled = true;
GenresCheckedBL.Location = new Point(99, 77);
GenresCheckedBL.Name = "GenresCheckedBL";
GenresCheckedBL.Size = new Size(251, 88);
GenresCheckedBL.TabIndex = 7;
//
// EmployeeF
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DarkSlateBlue;
ClientSize = new Size(653, 191);
Controls.Add(GenresCheckedBL);
Controls.Add(CancelBtn);
Controls.Add(SaveBtn);
Controls.Add(GenreLabel);
Controls.Add(FIOEnterTb);
Controls.Add(FullNameLabel);
ForeColor = Color.GreenYellow;
Name = "EmployeeF";
Text = "EmployeeF";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label FullNameLabel;
private TextBox FIOEnterTb;
private Label GenreLabel;
private Button SaveBtn;
private Button CancelBtn;
private ComboBox GenreCbox;
private CheckedListBox GenresCheckedBL;
}
}