namespace ProjectOptika.Scripts.Forms { partial class FormClient { /// /// 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() { buttonCancel = new Button(); buttonSave = new Button(); textBoxSurname = new TextBox(); labelSurname = new Label(); textBoxSecondName = new TextBox(); labelSecondName = new Label(); textBoxFirstName = new TextBox(); labelFirstName = new Label(); labelPhoneNumber = new Label(); textBoxPhoneNumber = new TextBox(); labelClientType = new Label(); comboBoxClientType = new ComboBox(); SuspendLayout(); // // buttonCancel // buttonCancel.Location = new Point(426, 114); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 29); buttonCancel.TabIndex = 23; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(314, 114); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 29); buttonSave.TabIndex = 22; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // textBoxSurname // textBoxSurname.Location = new Point(108, 111); textBoxSurname.Name = "textBoxSurname"; textBoxSurname.Size = new Size(125, 27); textBoxSurname.TabIndex = 21; // // labelSurname // labelSurname.AutoSize = true; labelSurname.Location = new Point(11, 114); labelSurname.Name = "labelSurname"; labelSurname.Size = new Size(74, 20); labelSurname.TabIndex = 20; labelSurname.Text = "Фимилия"; // // textBoxSecondName // textBoxSecondName.Location = new Point(108, 60); textBoxSecondName.Name = "textBoxSecondName"; textBoxSecondName.Size = new Size(125, 27); textBoxSecondName.TabIndex = 19; // // labelSecondName // labelSecondName.AutoSize = true; labelSecondName.Location = new Point(11, 63); labelSecondName.Name = "labelSecondName"; labelSecondName.Size = new Size(72, 20); labelSecondName.TabIndex = 18; labelSecondName.Text = "Отчество"; // // textBoxFirstName // textBoxFirstName.Location = new Point(108, 12); textBoxFirstName.Name = "textBoxFirstName"; textBoxFirstName.Size = new Size(125, 27); textBoxFirstName.TabIndex = 17; // // labelFirstName // labelFirstName.AutoSize = true; labelFirstName.Location = new Point(11, 15); labelFirstName.Name = "labelFirstName"; labelFirstName.Size = new Size(39, 20); labelFirstName.TabIndex = 16; labelFirstName.Text = "Имя"; // // labelPhoneNumber // labelPhoneNumber.AutoSize = true; labelPhoneNumber.Location = new Point(249, 15); labelPhoneNumber.Name = "labelPhoneNumber"; labelPhoneNumber.Size = new Size(127, 20); labelPhoneNumber.TabIndex = 24; labelPhoneNumber.Text = "Номер телефона"; // // textBoxPhoneNumber // textBoxPhoneNumber.Location = new Point(399, 12); textBoxPhoneNumber.Name = "textBoxPhoneNumber"; textBoxPhoneNumber.Size = new Size(183, 27); textBoxPhoneNumber.TabIndex = 25; // // labelClientType // labelClientType.AutoSize = true; labelClientType.Location = new Point(249, 70); labelClientType.Name = "labelClientType"; labelClientType.Size = new Size(94, 20); labelClientType.TabIndex = 26; labelClientType.Text = "Тип клиента"; // // comboBoxClientType // comboBoxClientType.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxClientType.FormattingEnabled = true; comboBoxClientType.Location = new Point(399, 67); comboBoxClientType.Name = "comboBoxClientType"; comboBoxClientType.Size = new Size(183, 28); comboBoxClientType.TabIndex = 27; // // FormClient // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(594, 152); Controls.Add(comboBoxClientType); Controls.Add(labelClientType); Controls.Add(textBoxPhoneNumber); Controls.Add(labelPhoneNumber); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSurname); Controls.Add(labelSurname); Controls.Add(textBoxSecondName); Controls.Add(labelSecondName); Controls.Add(textBoxFirstName); Controls.Add(labelFirstName); Name = "FormClient"; StartPosition = FormStartPosition.CenterParent; Text = "Клиент"; ResumeLayout(false); PerformLayout(); } #endregion private Button buttonCancel; private Button buttonSave; private TextBox textBoxSurname; private Label labelSurname; private TextBox textBoxSecondName; private Label labelSecondName; private TextBox textBoxFirstName; private Label labelFirstName; private Label labelPhoneNumber; private TextBox textBoxPhoneNumber; private Label labelClientType; private ComboBox comboBoxClientType; } }