2024-02-15 20:18:46 +04:00
|
|
|
|
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()
|
|
|
|
|
{
|
2024-03-14 21:28:58 +04:00
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ShopForm));
|
2024-02-15 20:18:46 +04:00
|
|
|
|
DataGridView = new DataGridView();
|
2024-03-14 21:28:58 +04:00
|
|
|
|
ColumnID = new DataGridViewTextBoxColumn();
|
|
|
|
|
Name = new DataGridViewTextBoxColumn();
|
|
|
|
|
Price = new DataGridViewTextBoxColumn();
|
|
|
|
|
Number = new DataGridViewTextBoxColumn();
|
2024-02-15 20:18:46 +04:00
|
|
|
|
buttonSave = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
|
|
|
|
textBoxName = new TextBox();
|
|
|
|
|
textBoxAddress = new TextBox();
|
|
|
|
|
labelName = new Label();
|
|
|
|
|
labelAddress = new Label();
|
2024-02-15 22:38:10 +04:00
|
|
|
|
DateTimePicker = new DateTimePicker();
|
|
|
|
|
labelDate = new Label();
|
2024-03-14 21:28:58 +04:00
|
|
|
|
CapacityUpDown = new NumericUpDown();
|
|
|
|
|
labelCapacity = new Label();
|
2024-02-15 20:18:46 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)DataGridView).BeginInit();
|
2024-03-14 21:28:58 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)CapacityUpDown).BeginInit();
|
2024-02-15 20:18:46 +04:00
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// DataGridView
|
|
|
|
|
//
|
|
|
|
|
DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
2024-02-28 16:39:48 +04:00
|
|
|
|
DataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnID, Name, Price, Number });
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(DataGridView, "DataGridView");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
DataGridView.Name = "DataGridView";
|
|
|
|
|
DataGridView.RowTemplate.Height = 29;
|
2024-03-14 21:28:58 +04:00
|
|
|
|
//
|
|
|
|
|
// 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";
|
2024-02-15 20:18:46 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonSave
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(buttonSave, "buttonSave");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
buttonSave.Name = "buttonSave";
|
|
|
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSave.Click += buttonSave_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(buttonCancel, "buttonCancel");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
|
|
|
//
|
|
|
|
|
// textBoxName
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(textBoxName, "textBoxName");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
textBoxName.Name = "textBoxName";
|
|
|
|
|
//
|
|
|
|
|
// textBoxAddress
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(textBoxAddress, "textBoxAddress");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
textBoxAddress.Name = "textBoxAddress";
|
|
|
|
|
//
|
|
|
|
|
// labelName
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(labelName, "labelName");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
labelName.Name = "labelName";
|
|
|
|
|
//
|
|
|
|
|
// labelAddress
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(labelAddress, "labelAddress");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
labelAddress.Name = "labelAddress";
|
|
|
|
|
//
|
2024-02-15 22:38:10 +04:00
|
|
|
|
// DateTimePicker
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(DateTimePicker, "DateTimePicker");
|
2024-02-15 22:38:10 +04:00
|
|
|
|
DateTimePicker.Name = "DateTimePicker";
|
|
|
|
|
//
|
|
|
|
|
// labelDate
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(labelDate, "labelDate");
|
2024-02-15 22:38:10 +04:00
|
|
|
|
labelDate.Name = "labelDate";
|
2024-02-28 16:39:48 +04:00
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
// CapacityUpDown
|
2024-02-28 16:39:48 +04:00
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(CapacityUpDown, "CapacityUpDown");
|
|
|
|
|
CapacityUpDown.Name = "CapacityUpDown";
|
2024-02-28 16:39:48 +04:00
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
// labelCapacity
|
2024-02-28 16:39:48 +04:00
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(labelCapacity, "labelCapacity");
|
|
|
|
|
labelCapacity.Name = "labelCapacity";
|
2024-02-28 16:39:48 +04:00
|
|
|
|
//
|
2024-02-15 20:18:46 +04:00
|
|
|
|
// ShopForm
|
|
|
|
|
//
|
2024-03-14 21:28:58 +04:00
|
|
|
|
resources.ApplyResources(this, "$this");
|
2024-02-15 20:18:46 +04:00
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-03-14 21:28:58 +04:00
|
|
|
|
Controls.Add(labelCapacity);
|
|
|
|
|
Controls.Add(CapacityUpDown);
|
2024-02-15 22:38:10 +04:00
|
|
|
|
Controls.Add(labelDate);
|
|
|
|
|
Controls.Add(DateTimePicker);
|
2024-02-15 20:18:46 +04:00
|
|
|
|
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();
|
2024-03-14 21:28:58 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)CapacityUpDown).EndInit();
|
2024-02-15 20:18:46 +04:00
|
|
|
|
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;
|
2024-02-15 22:38:10 +04:00
|
|
|
|
private DateTimePicker DateTimePicker;
|
|
|
|
|
private Label labelDate;
|
2024-02-28 16:39:48 +04:00
|
|
|
|
private DataGridViewTextBoxColumn ColumnID;
|
|
|
|
|
private DataGridViewTextBoxColumn Name;
|
|
|
|
|
private DataGridViewTextBoxColumn Price;
|
|
|
|
|
private DataGridViewTextBoxColumn Number;
|
2024-03-14 21:28:58 +04:00
|
|
|
|
private NumericUpDown CapacityUpDown;
|
|
|
|
|
private Label labelCapacity;
|
2024-02-15 20:18:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|