无法在解决方案资源管理器中找到cs文件,您应该做的是:
/project_directory/project_name.csproj编辑此文件,并确保name.cs如下所示:
注意:首先从该文件中删除具有现有your_form_name.cs的所有记录,并添加以下内容:
`<Compile Include="your_name.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="your_name.Designer.cs">
<DependentUpon>your_form_name.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="your_name.resx">
<DependentUpon>your_form_name.cs</DependentUpon>
</EmbeddedResource>`
再次打开解决方案,cs文件将显示在您的项目中。
网友评论