This commit is contained in:
Sergey Kozyrev 2024-02-24 10:17:19 +04:00
parent a37c33399e
commit a91928a1ac
3 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@
Controls.Add(buttonAdd);
Controls.Add(dataGridView);
Name = "DressesForm";
Text = "DressesForm";
Text = "Форма платье";
Load += DressesForm_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);

View File

@ -123,7 +123,7 @@
Controls.Add(label2);
Controls.Add(label1);
Name = "OrderForm";
Text = "OrderForm";
Text = "Форма заказа";
Load += OrderForm_Load;
ResumeLayout(false);
PerformLayout();

View File

@ -99,7 +99,7 @@ namespace SewingDressesView
try
{
var list = _logicD.ReadList(null);
if (list != null)
if (list != null)
{
comboBoxDress.DisplayMember = "DressName";
comboBoxDress.ValueMember = "Id";