不存在使用System.Windows.Forms的c#

本文关键字:Forms Windows System 不存在 | 更新日期: 2023-09-27 18:06:28

我试着添加:

using System.Windows.Forms 

但是它显示了一个错误。

我知道我必须组装到我的VS2012,但我真的不知道怎么做。我到处都找遍了,试遍了所有我找到的方法,但这些都没有帮助我。

@edit在网上搜索了1个小时……写完这篇文章2分钟后,我发现…Project>> add Reference…

解决:]

不存在使用System.Windows.Forms的c#

如果你使用的是Visual Studio,右键单击项目中的References文件夹,选择Add Reference…然后在。net选项卡上选择System.Windows.Forms并单击OK

右键单击解决方案资源管理器中的项目引用,选择添加引用…,在那里你必须找到System.Windows.Forms assembly(在Assemblies=>Framework下)并将其添加到项目中。

对于使用。net 6.0的用户:

将此添加到.csproj文件(在解决方案资源管理器中单击以项目命名的文件),然后添加</Project>:

<PropertyGroup>
    <TargetFramework>net6.0-windows</TargetFramework>
    <UseWPF>true</UseWPF>
    <UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>