PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/ShopForm.Designer.cs
2024-03-14 21:28:58 +04:00

173 lines
6.3 KiB
C#

namespace ProjectFlowerShop
{
partial class ShopForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ShopForm));
DataGridView = new DataGridView();
ColumnID = new DataGridViewTextBoxColumn();
Name = new DataGridViewTextBoxColumn();
Price = new DataGridViewTextBoxColumn();
Number = new DataGridViewTextBoxColumn();
buttonSave = new Button();
buttonCancel = new Button();
textBoxName = new TextBox();
textBoxAddress = new TextBox();
labelName = new Label();
labelAddress = new Label();
DateTimePicker = new DateTimePicker();
labelDate = new Label();
CapacityUpDown = new NumericUpDown();
labelCapacity = new Label();
((System.ComponentModel.ISupportInitialize)DataGridView).BeginInit();
((System.ComponentModel.ISupportInitialize)CapacityUpDown).BeginInit();
SuspendLayout();
//
// DataGridView
//
DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
DataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnID, Name, Price, Number });
resources.ApplyResources(DataGridView, "DataGridView");
DataGridView.Name = "DataGridView";
DataGridView.RowTemplate.Height = 29;
//
// ColumnID
//
resources.ApplyResources(ColumnID, "ColumnID");
ColumnID.Name = "ColumnID";
//
// Name
//
resources.ApplyResources(Name, "Name");
Name.Name = "Name";
//
// Price
//
resources.ApplyResources(Price, "Price");
Price.Name = "Price";
//
// Number
//
resources.ApplyResources(Number, "Number");
Number.Name = "Number";
//
// buttonSave
//
resources.ApplyResources(buttonSave, "buttonSave");
buttonSave.Name = "buttonSave";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
resources.ApplyResources(buttonCancel, "buttonCancel");
buttonCancel.Name = "buttonCancel";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// textBoxName
//
resources.ApplyResources(textBoxName, "textBoxName");
textBoxName.Name = "textBoxName";
//
// textBoxAddress
//
resources.ApplyResources(textBoxAddress, "textBoxAddress");
textBoxAddress.Name = "textBoxAddress";
//
// labelName
//
resources.ApplyResources(labelName, "labelName");
labelName.Name = "labelName";
//
// labelAddress
//
resources.ApplyResources(labelAddress, "labelAddress");
labelAddress.Name = "labelAddress";
//
// DateTimePicker
//
resources.ApplyResources(DateTimePicker, "DateTimePicker");
DateTimePicker.Name = "DateTimePicker";
//
// labelDate
//
resources.ApplyResources(labelDate, "labelDate");
labelDate.Name = "labelDate";
//
// CapacityUpDown
//
resources.ApplyResources(CapacityUpDown, "CapacityUpDown");
CapacityUpDown.Name = "CapacityUpDown";
//
// labelCapacity
//
resources.ApplyResources(labelCapacity, "labelCapacity");
labelCapacity.Name = "labelCapacity";
//
// ShopForm
//
resources.ApplyResources(this, "$this");
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(labelCapacity);
Controls.Add(CapacityUpDown);
Controls.Add(labelDate);
Controls.Add(DateTimePicker);
Controls.Add(labelAddress);
Controls.Add(labelName);
Controls.Add(textBoxAddress);
Controls.Add(textBoxName);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(DataGridView);
Load += ShopForm_Load;
((System.ComponentModel.ISupportInitialize)DataGridView).EndInit();
((System.ComponentModel.ISupportInitialize)CapacityUpDown).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private DataGridView DataGridView;
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxName;
private TextBox textBoxAddress;
private Label labelName;
private Label labelAddress;
private DateTimePicker DateTimePicker;
private Label labelDate;
private DataGridViewTextBoxColumn ColumnID;
private DataGridViewTextBoxColumn Name;
private DataGridViewTextBoxColumn Price;
private DataGridViewTextBoxColumn Number;
private NumericUpDown CapacityUpDown;
private Label labelCapacity;
}
}