namespace SushiBarView.Forms { partial class FormCustomer { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { label1 = new Label(); FioTextBox = new TextBox(); label2 = new Label(); EmploymentDateTimePicker = new DateTimePicker(); button1 = new Button(); label3 = new Label(); SumOfAllOrdersTextBox = new TextBox(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(11, 15); label1.Name = "label1"; label1.Size = new Size(34, 15); label1.TabIndex = 0; label1.Text = "ФИО"; // // FioTextBox // FioTextBox.Location = new Point(119, 12); FioTextBox.Name = "FioTextBox"; FioTextBox.Size = new Size(225, 23); FioTextBox.TabIndex = 1; // // label2 // label2.AutoSize = true; label2.Location = new Point(11, 47); label2.Name = "label2"; label2.Size = new Size(90, 15); label2.TabIndex = 2; label2.Text = "Дата рождения"; // // EmploymentDateTimePicker // EmploymentDateTimePicker.Location = new Point(119, 41); EmploymentDateTimePicker.Name = "EmploymentDateTimePicker"; EmploymentDateTimePicker.Size = new Size(225, 23); EmploymentDateTimePicker.TabIndex = 3; // // button1 // button1.Location = new Point(255, 117); button1.Name = "button1"; button1.Size = new Size(89, 28); button1.TabIndex = 4; button1.Text = "Сохранить"; button1.UseVisualStyleBackColor = true; button1.Click += ButtonSave_Click; // // label3 // label3.AutoSize = true; label3.Location = new Point(11, 77); label3.Name = "label3"; label3.Size = new Size(89, 15); label3.TabIndex = 5; label3.Text = "Сумма заказов"; // // SumOfAllOrdersTextBox // SumOfAllOrdersTextBox.Location = new Point(119, 74); SumOfAllOrdersTextBox.Name = "SumOfAllOrdersTextBox"; SumOfAllOrdersTextBox.ReadOnly = true; SumOfAllOrdersTextBox.Size = new Size(225, 23); SumOfAllOrdersTextBox.TabIndex = 6; // // FormCustomer // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(358, 155); Controls.Add(SumOfAllOrdersTextBox); Controls.Add(label3); Controls.Add(button1); Controls.Add(EmploymentDateTimePicker); Controls.Add(label2); Controls.Add(FioTextBox); Controls.Add(label1); Name = "FormCustomer"; Text = "Покупатель"; Load += FormCustomer_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private TextBox FioTextBox; private Label label2; private DateTimePicker EmploymentDateTimePicker; private Button button1; private Label label3; private TextBox SumOfAllOrdersTextBox; } }