Cant find user code file of Windows form in solution explorer, now I must right click on form class and choose <>View Code. But there always been cs file at the
I encountered the same issue, not displaying my Form. What you should do is:
/project_directory/project_name.csproj
edit this file and make sure your_form_name.cs is like this:Notice: first delete all records from this file with existing your_form_name.cs and add the following:
`
Form
your_form_name.cs
your_form_name.cs
`
Open solution again and Form will be shown in your project once again.