LC4 wrong names of forms

This commit is contained in:
Timourka 2024-04-03 00:21:14 +04:00
parent 3e8bbabeb1
commit 5ff187a72f
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@
ClientSize = new Size(800, 450); ClientSize = new Size(800, 450);
Controls.Add(panel); Controls.Add(panel);
Name = "FormReportDateOrders"; Name = "FormReportDateOrders";
Text = "FormReportDateOrders"; Text = "Report by date orders";
FormClosed += FormReportDateOrders_FormClosed; FormClosed += FormReportDateOrders_FormClosed;
panel.ResumeLayout(false); panel.ResumeLayout(false);
ResumeLayout(false); ResumeLayout(false);

View File

@ -82,7 +82,7 @@
Controls.Add(dataGridView); Controls.Add(dataGridView);
Controls.Add(buttonSaveToExcel); Controls.Add(buttonSaveToExcel);
Name = "FormReportShopCars"; Name = "FormReportShopCars";
Text = "FormReportShopCars"; Text = "Report shops with cars";
Load += FormReportShopCars_Load; Load += FormReportShopCars_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false); ResumeLayout(false);