先说结论:能用.ner fx尽量用fx开发,因为很多坑之前的前辈帮你踩过了。。。
解决方法是在这个目录下找到你对应版本的System.Windows.Forms这个dll
C:\Program Files\dotnet\packs\Microsoft.WindowsDesktop.App.Ref\6.0.26\ref\net6.0
这个目录每个人版本不一样,想找到最简单的方法就是建立一个空的winform项目找一下这个dll路径在哪
然后在.net6的csproj
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>