使用.net 6.0框架的WPF应用如何引用System.Windows.Forms这个dll
先说结论:能用.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加上一句<UseWindowsForms>true</UseWindowsForms>即可大功告急~
<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>