131 lines
4.8 KiB
C#
131 lines
4.8 KiB
C#
namespace LDBproject.AdditionalForms
|
|
{
|
|
partial class CustomerF
|
|
{
|
|
/// <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()
|
|
{
|
|
CancelBtn = new Button();
|
|
SaveBtn = new Button();
|
|
FIOEnterTb = new TextBox();
|
|
FullNameLabel = new Label();
|
|
BDlabel = new Label();
|
|
BirthdayDTPicker = new DateTimePicker();
|
|
SuspendLayout();
|
|
//
|
|
// CancelBtn
|
|
//
|
|
CancelBtn.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
CancelBtn.ForeColor = Color.DarkSlateBlue;
|
|
CancelBtn.Location = new Point(495, 70);
|
|
CancelBtn.Name = "CancelBtn";
|
|
CancelBtn.Size = new Size(102, 34);
|
|
CancelBtn.TabIndex = 8;
|
|
CancelBtn.Text = "Cancel";
|
|
CancelBtn.UseVisualStyleBackColor = true;
|
|
CancelBtn.Click += CancelBtn_Click;
|
|
//
|
|
// SaveBtn
|
|
//
|
|
SaveBtn.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
SaveBtn.ForeColor = Color.DarkSlateBlue;
|
|
SaveBtn.Location = new Point(404, 70);
|
|
SaveBtn.Name = "SaveBtn";
|
|
SaveBtn.Size = new Size(81, 34);
|
|
SaveBtn.TabIndex = 7;
|
|
SaveBtn.Text = "Save";
|
|
SaveBtn.UseVisualStyleBackColor = true;
|
|
SaveBtn.Click += SaveBtn_Click;
|
|
//
|
|
// FIOEnterTb
|
|
//
|
|
FIOEnterTb.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
FIOEnterTb.ForeColor = Color.MidnightBlue;
|
|
FIOEnterTb.Location = new Point(173, 27);
|
|
FIOEnterTb.Name = "FIOEnterTb";
|
|
FIOEnterTb.Size = new Size(424, 31);
|
|
FIOEnterTb.TabIndex = 6;
|
|
//
|
|
// FullNameLabel
|
|
//
|
|
FullNameLabel.AutoSize = true;
|
|
FullNameLabel.Location = new Point(29, 30);
|
|
FullNameLabel.Name = "FullNameLabel";
|
|
FullNameLabel.Size = new Size(138, 25);
|
|
FullNameLabel.TabIndex = 9;
|
|
FullNameLabel.Text = "Full Name (FIO):";
|
|
//
|
|
// BDlabel
|
|
//
|
|
BDlabel.AutoSize = true;
|
|
BDlabel.Location = new Point(29, 75);
|
|
BDlabel.Name = "BDlabel";
|
|
BDlabel.Size = new Size(159, 25);
|
|
BDlabel.TabIndex = 10;
|
|
BDlabel.Text = "Birth day and year:";
|
|
//
|
|
// BirthdayDTPicker
|
|
//
|
|
BirthdayDTPicker.CalendarForeColor = Color.GreenYellow;
|
|
BirthdayDTPicker.CalendarMonthBackground = Color.DarkSlateBlue;
|
|
BirthdayDTPicker.CalendarTitleBackColor = Color.MidnightBlue;
|
|
BirthdayDTPicker.CalendarTitleForeColor = Color.DarkSlateBlue;
|
|
BirthdayDTPicker.CalendarTrailingForeColor = Color.GreenYellow;
|
|
BirthdayDTPicker.Location = new Point(194, 73);
|
|
BirthdayDTPicker.Name = "BirthdayDTPicker";
|
|
BirthdayDTPicker.Size = new Size(193, 31);
|
|
BirthdayDTPicker.TabIndex = 12;
|
|
BirthdayDTPicker.Value = new DateTime(2024, 11, 15, 12, 40, 0, 0);
|
|
//
|
|
// CustomerF
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DarkSlateBlue;
|
|
ClientSize = new Size(631, 130);
|
|
Controls.Add(BirthdayDTPicker);
|
|
Controls.Add(BDlabel);
|
|
Controls.Add(FullNameLabel);
|
|
Controls.Add(CancelBtn);
|
|
Controls.Add(SaveBtn);
|
|
Controls.Add(FIOEnterTb);
|
|
ForeColor = Color.GreenYellow;
|
|
Name = "CustomerF";
|
|
Text = "CustomerF";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button CancelBtn;
|
|
private Button SaveBtn;
|
|
private TextBox FIOEnterTb;
|
|
private Label FullNameLabel;
|
|
private Label BDlabel;
|
|
private DateTimePicker BirthdayDTPicker;
|
|
}
|
|
} |