2024-11-13 23:20:06 +04:00
|
|
|
|
namespace GasStation.Forms
|
|
|
|
|
{
|
|
|
|
|
partial class FormSupplier
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
labelSupplier = new Label();
|
|
|
|
|
buttonSave = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
2024-11-15 18:27:06 +04:00
|
|
|
|
comboBoxSupplierName = new ComboBox();
|
2024-11-13 23:20:06 +04:00
|
|
|
|
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;
|
|
|
|
|
//
|
2024-11-15 18:27:06 +04:00
|
|
|
|
// 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;
|
|
|
|
|
//
|
2024-11-13 23:20:06 +04:00
|
|
|
|
// FormSupplier
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(438, 122);
|
2024-11-15 18:27:06 +04:00
|
|
|
|
Controls.Add(comboBoxSupplierName);
|
2024-11-13 23:20:06 +04:00
|
|
|
|
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;
|
2024-11-15 18:27:06 +04:00
|
|
|
|
private ComboBox comboBoxSupplierName;
|
2024-11-13 23:20:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|