This commit is contained in:
Катя Ихонкина 2023-03-18 18:02:16 +04:00
parent 9583e8dbee
commit ef602fa32a
5 changed files with 5 additions and 1 deletions

View File

@ -97,6 +97,7 @@
this.Controls.Add(this.DataGridView);
this.Name = "FormComponents";
this.Text = "Компоненты";
this.Load += new System.EventHandler(this.FormComponents_Load);
((System.ComponentModel.ISupportInitialize)(this.DataGridView)).EndInit();
this.ResumeLayout(false);

View File

@ -149,6 +149,7 @@
this.MainMenuStrip = this.MenuStrip;
this.Name = "FormMain";
this.Text = "Завод ЖБИ";
this.Load += new System.EventHandler(this.FormMain_Load);
this.MenuStrip.ResumeLayout(false);
this.MenuStrip.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.DataGridView)).EndInit();

View File

@ -97,6 +97,7 @@
this.Controls.Add(this.DataGridView);
this.Name = "FormReinforceds";
this.Text = "ЖБИ";
this.Load += new System.EventHandler(this.FormComponents_Load);
((System.ComponentModel.ISupportInitialize)(this.DataGridView)).EndInit();
this.ResumeLayout(false);

View File

@ -13,6 +13,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PrecastConcreteFileImplement\PrecastConcretePlantFileImplement.csproj" />
<ProjectReference Include="..\PrecastConcretePlantBusinessLogic\PrecastConcretePlantBusinessLogic.csproj" />
<ProjectReference Include="..\PrecastConcretePlantContracts\PrecastConcretePlantContracts.csproj" />
<ProjectReference Include="..\PrecastConcretePlantDataModels\PrecastConcretePlantDataModels.csproj" />

View File

@ -5,7 +5,7 @@ using NLog.Extensions.Logging;
using PrecastConcretePlantBusinessLogic.BusinessLogic;
using PrecastConcretePlantContracts.BusinessLogicsContracts;
using PrecastConcretePlantContracts.StoragesContracts;
using PrecastConcretePlantListImplement.Implements;
using PrecastConcretePlantFileImplement.Implements;
namespace PrecastConcretePlant
{