如果我正在开发WPF项目,如何添加对WinForms的引用?
2022-04-22 本文已影响0人
价值投机168
在.Net内核中添加System.Windows.forms的引用
因此,我不得不将这一行添加到我的项目文件中:
<UseWindowsForms>true</UseWindowsForms>
比较完整的是:
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Server.ico</ApplicationIcon>
<Authors>VeEX</Authors>
<Copyright>Copyright © VeEX 2022</Copyright>
<Company>VeEX</Company>
<ApplicationManifest>app.manifest</ApplicationManifest>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
<UseWindowsForms>True</UseWindowsForms>
</PropertyGroup>