The Role of Designer.cs in C #

I get the Designer.cs file in my project, and the comment in the file says that it is created by an automated tool.

It was an existing project, so I know little about it. It is created for one schema a.cs, ​​which consists of the schemas of all tables in the database.

I am using SQLIte DB. Can someone help me figure out what is using a file Designer.csin a C # project.

+5
source share
2 answers

There are many types of Designer.cs files in a Visual Studio project. Common are:

  • Properties \ Resources.resx \ Resources.Designer.cs file, automatically generated code with the addition of resources to the Project + Resources tab.
  • \Settings.settings\Settings.Designer.cs , Project + Settings
  • SomeForm.cs\SomeForm.Designer.cs, , Winforms, ,
  • SomeData.xsd\SomeData.Designer.cs, , .

, , , . , Visual Studio, #, - . Designer.cs , node Solution Explorer. Designer.cs, , . . : , .

+10

Designer.cs . , designer.cs. , .

+4

All Articles