namespace AppView
{
partial class FormProvider
{
///
/// 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()
{
this.labelName = new System.Windows.Forms.Label();
this.textBoxName = new System.Windows.Forms.TextBox();
this.labelLogo = new System.Windows.Forms.Label();
this.textBoxNumber = new System.Windows.Forms.TextBox();
this.labelType = new System.Windows.Forms.Label();
this.labelNumber = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.dropDownList1 = new WinForm.DropDownList();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonType = new System.Windows.Forms.Button();
this.buttonImage = new System.Windows.Forms.Button();
this.ImgFile = new System.Windows.Forms.OpenFileDialog();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// labelName
//
this.labelName.AutoSize = true;
this.labelName.Location = new System.Drawing.Point(12, 9);
this.labelName.Name = "labelName";
this.labelName.Size = new System.Drawing.Size(59, 15);
this.labelName.TabIndex = 0;
this.labelName.Text = "Название";
//
// textBoxName
//
this.textBoxName.Location = new System.Drawing.Point(12, 27);
this.textBoxName.Name = "textBoxName";
this.textBoxName.Size = new System.Drawing.Size(239, 23);
this.textBoxName.TabIndex = 1;
this.textBoxName.TabStop = false;
this.textBoxName.TextChanged += new System.EventHandler(this.OnInputChange);
//
// labelLogo
//
this.labelLogo.AutoSize = true;
this.labelLogo.Location = new System.Drawing.Point(12, 59);
this.labelLogo.Name = "labelLogo";
this.labelLogo.Size = new System.Drawing.Size(53, 15);
this.labelLogo.TabIndex = 2;
this.labelLogo.Text = "Логотип";
//
// textBoxNumber
//
this.textBoxNumber.Location = new System.Drawing.Point(12, 424);
this.textBoxNumber.Name = "textBoxNumber";
this.textBoxNumber.Size = new System.Drawing.Size(239, 23);
this.textBoxNumber.TabIndex = 4;
this.textBoxNumber.TabStop = false;
this.textBoxNumber.TextChanged += new System.EventHandler(this.OnInputChange);
//
// labelType
//
this.labelType.AutoSize = true;
this.labelType.Location = new System.Drawing.Point(12, 307);
this.labelType.Name = "labelType";
this.labelType.Size = new System.Drawing.Size(75, 15);
this.labelType.TabIndex = 5;
this.labelType.Text = "Тип изделий";
//
// labelNumber
//
this.labelNumber.AutoSize = true;
this.labelNumber.Location = new System.Drawing.Point(12, 406);
this.labelNumber.Name = "labelNumber";
this.labelNumber.Size = new System.Drawing.Size(101, 15);
this.labelNumber.TabIndex = 6;
this.labelNumber.Text = "Номер телефона";
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(12, 77);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(239, 159);
this.pictureBox1.TabIndex = 7;
this.pictureBox1.TabStop = false;
//
// dropDownList1
//
this.dropDownList1.Location = new System.Drawing.Point(12, 325);
this.dropDownList1.Name = "dropDownList1";
this.dropDownList1.Selected = "";
this.dropDownList1.Size = new System.Drawing.Size(239, 30);
this.dropDownList1.TabIndex = 8;
this.dropDownList1.TabStop = false;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(38, 471);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 9;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(146, 471);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 10;
this.buttonCancel.Text = "Отменить";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonType
//
this.buttonType.Location = new System.Drawing.Point(109, 361);
this.buttonType.Name = "buttonType";
this.buttonType.Size = new System.Drawing.Size(142, 23);
this.buttonType.TabIndex = 11;
this.buttonType.TabStop = false;
this.buttonType.Text = "Редактировать типы";
this.buttonType.UseVisualStyleBackColor = true;
this.buttonType.Click += new System.EventHandler(this.buttonType_Click);
//
// buttonImage
//
this.buttonImage.Location = new System.Drawing.Point(109, 242);
this.buttonImage.Name = "buttonImage";
this.buttonImage.Size = new System.Drawing.Size(142, 23);
this.buttonImage.TabIndex = 12;
this.buttonImage.TabStop = false;
this.buttonImage.Text = "Загрузить картинку";
this.buttonImage.UseVisualStyleBackColor = true;
this.buttonImage.Click += new System.EventHandler(this.buttonImage_Click);
//
// ImgFile
//
this.ImgFile.FileName = "openFileDialog1";
//
// FormProvider
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(263, 509);
this.Controls.Add(this.buttonImage);
this.Controls.Add(this.buttonType);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.dropDownList1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.labelNumber);
this.Controls.Add(this.labelType);
this.Controls.Add(this.textBoxNumber);
this.Controls.Add(this.labelLogo);
this.Controls.Add(this.textBoxName);
this.Controls.Add(this.labelName);
this.Name = "FormProvider";
this.Text = "FormProvider";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormProvider_FormClosing);
this.Load += new System.EventHandler(this.FormProvider_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label labelName;
private TextBox textBoxName;
private Label labelLogo;
private TextBox textBoxNumber;
private Label labelType;
private Label labelNumber;
private PictureBox pictureBox1;
private WinForm.DropDownList dropDownList1;
private Button buttonSave;
private Button buttonCancel;
private Button buttonType;
private Button buttonImage;
private OpenFileDialog ImgFile;
}
}