namespace GasStation.Forms
{
partial class FormSupplier
{
///
/// 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()
{
labelSupplier = new Label();
buttonSave = new Button();
buttonCancel = new Button();
comboBoxSupplierName = new ComboBox();
SuspendLayout();
//
// labelSupplier
//
labelSupplier.AutoSize = true;
labelSupplier.Location = new Point(12, 15);
labelSupplier.Name = "labelSupplier";
labelSupplier.Size = new Size(70, 15);
labelSupplier.TabIndex = 1;
labelSupplier.Text = "Поставщик";
//
// buttonSave
//
buttonSave.Location = new Point(100, 52);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 2;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(315, 52);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 3;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// comboBoxSupplierName
//
comboBoxSupplierName.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxSupplierName.FormattingEnabled = true;
comboBoxSupplierName.Location = new Point(100, 12);
comboBoxSupplierName.Name = "comboBoxSupplierName";
comboBoxSupplierName.Size = new Size(290, 23);
comboBoxSupplierName.TabIndex = 4;
//
// FormSupplier
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(438, 122);
Controls.Add(comboBoxSupplierName);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelSupplier);
Name = "FormSupplier";
StartPosition = FormStartPosition.CenterParent;
Text = "FormSupplier";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelSupplier;
private Button buttonSave;
private Button buttonCancel;
private ComboBox comboBoxSupplierName;
}
}