答案 0 :(得分:2)
答案 1 :(得分:1)
我遇到了同样的问题,没有显示我的表格。您应该做的是:
/project_directory/project_name.csproj
编辑此文件,并确保your_form_name.cs如下所示:注意:首先从该文件中删除具有现有your_form_name.cs的所有记录,并添加以下内容:
`<Compile Include="your_form_name.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="your_form_name.Designer.cs">
<DependentUpon>your_form_name.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="your_form_name.resx">
<DependentUpon>your_form_name.cs</DependentUpon>
</EmbeddedResource>`
再次打开解决方案,表单将再次显示在您的项目中。
答案 2 :(得分:0)
答案 3 :(得分:0)
这里也是错误。
Visual Studio Professional 2015.安装版本:14.0.25431.01 Update 3(使用KB3165756)
安装Azure Core 2.9.6之后,这个错误的行为就开始了,它安装了.NET Core的东西。 .NET Core模板到Visual Studio 2015(实际安装的.NET核心工具(预览2)14.1.21111.0)
如果将类库(.NET Core)或控制台应用程序(.NET Core)添加到C#解决方案,则在解决方案资源管理器中可以再次显示forms.cs
在添加类库(.NET Core)之前:
将类库(.NET Core)添加到解决方案:
使用.NET Core的东西有错误。希望它可以修复未来的补丁。