ISEbd-22_Rozhkov.I.E._Simple/GasStation/Forms/FormSupplier.Designer.cs
2024-11-13 23:20:06 +04:00

96 lines
3.3 KiB
C#

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()
{
textBoxSupplierName = new TextBox();
labelSupplier = new Label();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// textBoxSupplierName
//
textBoxSupplierName.Location = new Point(100, 12);
textBoxSupplierName.Name = "textBoxSupplierName";
textBoxSupplierName.Size = new Size(290, 23);
textBoxSupplierName.TabIndex = 0;
//
// 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;
//
// FormSupplier
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(438, 122);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelSupplier);
Controls.Add(textBoxSupplierName);
Name = "FormSupplier";
StartPosition = FormStartPosition.CenterParent;
Text = "FormSupplier";
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxSupplierName;
private Label labelSupplier;
private Button buttonSave;
private Button buttonCancel;
}
}