Готово(сдано)

This commit is contained in:
Yunusov_Niyaz 2024-02-19 21:19:00 +04:00
parent a2bd2436b5
commit 5a3c088743
3 changed files with 5 additions and 2 deletions

View File

@ -136,11 +136,11 @@
Id.Visible = false; Id.Visible = false;
Id.Width = 125; Id.Width = 125;
// //
// Name // ShopName
// //
ShopName.HeaderText = "Название"; ShopName.HeaderText = "Название";
ShopName.MinimumWidth = 6; ShopName.MinimumWidth = 6;
ShopName.Name = "Name"; ShopName.Name = "ShopName";
ShopName.ReadOnly = true; ShopName.ReadOnly = true;
ShopName.Width = 150; ShopName.Width = 150;
// //
@ -176,6 +176,7 @@
Controls.Add(dateTimePicker); Controls.Add(dateTimePicker);
Margin = new Padding(3, 4, 3, 4); Margin = new Padding(3, 4, 3, 4);
Name = "FormShop"; Name = "FormShop";
StartPosition = FormStartPosition.CenterScreen;
Text = "Магазин"; Text = "Магазин";
Load += FormShop_Load; Load += FormShop_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();

View File

@ -103,6 +103,7 @@
Controls.Add(dataGridView); Controls.Add(dataGridView);
Margin = new Padding(3, 4, 3, 4); Margin = new Padding(3, 4, 3, 4);
Name = "FormShops"; Name = "FormShops";
StartPosition = FormStartPosition.CenterScreen;
Text = "Магазины"; Text = "Магазины";
Load += FormShops_Load; Load += FormShops_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();

View File

@ -130,6 +130,7 @@
Controls.Add(comboBoxShop); Controls.Add(comboBoxShop);
Margin = new Padding(3, 4, 3, 4); Margin = new Padding(3, 4, 3, 4);
Name = "FormSupply"; Name = "FormSupply";
StartPosition = FormStartPosition.CenterScreen;
Text = "Поставки"; Text = "Поставки";
ResumeLayout(false); ResumeLayout(false);
PerformLayout(); PerformLayout();