拿Vs2022 建了个Demo,运行环境是net6.0-windows,无论双击或是右键都打不开窗体设计器
打开项目目录下的*.csproj.user
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"><ItemGroup><Compile Update="Main.cs"><SubType>Form</SubType></Compile></ItemGroup>
</Project>
检查是否有 <SubType>Form</SubType> 节点,
如果没有,参考上边代码创建,
如果有改为<SubType>UserControl</SubType> 试哈。
早期版本可能在 .csproj文件中。
这可能是个Bug,当能打开窗体设计器后,再随便改都不影响。