Role of Designer.cs File in c#

前端 未结 2 656
天涯浪人
天涯浪人 2020-12-16 02:37

I am getting Designer.cs file in my project and the comment in the file says it is being generated by an automatic tool.

This was an existing project so I don\'t k

2条回答
  •  再見小時候
    2020-12-16 03:24

    Designer.cs contains the declaration and initialization of UI controls and layout of form. The form is rendered based on the information provided in designer.cs. This file is autogenerate when a form is created in design mode.

提交回复
热议问题