COP3PLUSSagirov/DeliveryApp/FormDelivery.Designer.cs
2024-11-06 15:40:33 +04:00

214 lines
8.5 KiB
C#

namespace DeliveryApp
{
partial class FormDelivery
{
/// <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()
{
tableLayoutPanel1 = new TableLayoutPanel();
label1 = new Label();
textBox1 = new TextBox();
label2 = new Label();
label3 = new Label();
label4 = new Label();
buttonImage = new Button();
customCheckedListBox1 = new CustomComponents.CustomCheckedListBox();
buttonCancel = new Button();
buttonSave = new Button();
customTextBoxNumber2 = new textboxfix.CustomTextBoxNumber();
pictureBox1 = new PictureBox();
tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 5;
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 46.62162F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 53.37838F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 94F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 169F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 100F));
tableLayoutPanel1.Controls.Add(label1, 0, 0);
tableLayoutPanel1.Controls.Add(textBox1, 0, 1);
tableLayoutPanel1.Controls.Add(label2, 1, 0);
tableLayoutPanel1.Controls.Add(label3, 2, 0);
tableLayoutPanel1.Controls.Add(label4, 3, 0);
tableLayoutPanel1.Controls.Add(buttonImage, 2, 1);
tableLayoutPanel1.Controls.Add(customCheckedListBox1, 3, 1);
tableLayoutPanel1.Controls.Add(buttonCancel, 4, 0);
tableLayoutPanel1.Controls.Add(buttonSave, 4, 1);
tableLayoutPanel1.Controls.Add(customTextBoxNumber2, 1, 1);
tableLayoutPanel1.Dock = DockStyle.Top;
tableLayoutPanel1.Location = new Point(0, 0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 2;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 30.06993F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 69.93007F));
tableLayoutPanel1.Size = new Size(660, 143);
tableLayoutPanel1.TabIndex = 0;
//
// label1
//
label1.Anchor = AnchorStyles.Top;
label1.AutoSize = true;
label1.Location = new Point(48, 0);
label1.Name = "label1";
label1.Size = new Size(42, 20);
label1.TabIndex = 0;
label1.Text = "ФИО";
//
// textBox1
//
textBox1.Dock = DockStyle.Fill;
textBox1.Location = new Point(3, 46);
textBox1.Name = "textBox1";
textBox1.Size = new Size(132, 27);
textBox1.TabIndex = 1;
//
// label2
//
label2.Anchor = AnchorStyles.Top;
label2.AutoSize = true;
label2.Location = new Point(182, 0);
label2.Name = "label2";
label2.Size = new Size(69, 20);
label2.TabIndex = 2;
label2.Text = "Телефон";
//
// label3
//
label3.Anchor = AnchorStyles.Top;
label3.AutoSize = true;
label3.Location = new Point(321, 0);
label3.Name = "label3";
label3.Size = new Size(44, 20);
label3.TabIndex = 3;
label3.Text = "Фото";
//
// label4
//
label4.Anchor = AnchorStyles.Top;
label4.AutoSize = true;
label4.Location = new Point(457, 0);
label4.Name = "label4";
label4.Size = new Size(35, 20);
label4.TabIndex = 4;
label4.Text = "Тип";
//
// buttonImage
//
buttonImage.Dock = DockStyle.Fill;
buttonImage.Location = new Point(299, 46);
buttonImage.Name = "buttonImage";
buttonImage.Size = new Size(88, 94);
buttonImage.TabIndex = 5;
buttonImage.Text = "Выбрать фото";
buttonImage.UseVisualStyleBackColor = true;
buttonImage.Click += buttonImage_Click;
//
// customCheckedListBox1
//
customCheckedListBox1.Anchor = AnchorStyles.None;
customCheckedListBox1.Location = new Point(393, 49);
customCheckedListBox1.Name = "customCheckedListBox1";
customCheckedListBox1.SelectedValue = "";
customCheckedListBox1.Size = new Size(163, 88);
customCheckedListBox1.TabIndex = 6;
//
// buttonCancel
//
buttonCancel.Dock = DockStyle.Fill;
buttonCancel.Location = new Point(562, 3);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(95, 37);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.Dock = DockStyle.Fill;
buttonSave.Location = new Point(562, 46);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(95, 94);
buttonSave.TabIndex = 8;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// customTextBoxNumber2
//
customTextBoxNumber2.Dock = DockStyle.Fill;
customTextBoxNumber2.Location = new Point(141, 46);
customTextBoxNumber2.Name = "customTextBoxNumber2";
customTextBoxNumber2.NumPattern = "\\(\\d{4}\\)\\d{2}-\\d{2}-\\d{2}";
customTextBoxNumber2.Size = new Size(152, 94);
customTextBoxNumber2.TabIndex = 9;
//
// pictureBox1
//
pictureBox1.Dock = DockStyle.Fill;
pictureBox1.Location = new Point(0, 143);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(660, 362);
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
pictureBox1.TabIndex = 1;
pictureBox1.TabStop = false;
//
// FormDelivery
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(660, 505);
Controls.Add(pictureBox1);
Controls.Add(tableLayoutPanel1);
Name = "FormDelivery";
Text = "FormDelivery";
Load += FormDelivery_Load;
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutPanel1;
private Label label1;
private TextBox textBox1;
private Label label2;
private Label label3;
private Label label4;
private PictureBox pictureBox1;
private Button buttonImage;
private CustomComponents.CustomCheckedListBox customCheckedListBox1;
private Button buttonCancel;
private Button buttonSave;
private textboxfix.CustomTextBoxNumber customTextBoxNumber2;
}
}