有没有办法将我的控制台应用程序转换为 C# 中的 Windows 窗体应用程序?
我创建了一个控制台应用程序,但我想将其转换为 Windows 窗体应用程序。
我发现这个< /a> 它似乎是我所需要的,但是当我尝试使用 using System.Windows.Forms; 时收到一条错误消息;
这是我收到的错误消息:
错误 1 命名空间“System”中不存在类型或命名空间名称“Windows”(是否缺少程序集引用?)
是否还有其他步骤,或者在 VS 2008 中是否有某种不同?
I created a console application, but I want to turn it into a windows forms application.
I found This and it appeared to be what I needed, but I got an error message when I tried to use using System.Windows.Forms;
This is the error message I got:
Error 1 The type or namespace name 'Windows' does not exist in the namespace 'System' (are you missing an assembly reference?)
Is there another step, or is it somehow different in VS 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要添加对 WinForms 程序集的引用
您可能还需要对 System.Data 执行相同的操作,具体取决于您的项目设置
You need to add a reference to the WinForms assembly
You may need to do the same for System.Data as well depending on your project setup
确保在项目的引用中添加 System.Windows.Forms 程序集。在解决方案资源管理器中,右键单击“引用”,然后在 .NET 选项卡下找到 System.Windows.Forms 程序集并添加它。
Make sure you add the System.Windows.Forms assembly in your references for the project. In the solution explorer, right click on 'References' and then under the .NET tab find the System.Windows.Forms assembly and add it.
您需要添加对 System.Windows.Forms 的引用。右键单击您的项目并选择添加引用。
在 .NET 选项卡上选择前面提到的参考。
You need to add a reference to
System.Windows.Forms
. Right-click your project and choose Add Reference.On the .NET tab choose the the previously mentioned reference.
最简单的方法:
从 .Net Core 3 开始,最简单的方法是将您的
Program.cs
备份到磁盘上的某个位置(或仅使用 git)并运行以下命令位于Program.cs
所在位置:它将替换您的
Program.cs
和.csproj
。然后只需从旧的Program.cs
中复制所需的代码即可。就是这样!对于手动转换项目,这可能会有所帮助:
以下是 .Net Core 3 项目的外观(使用
dotnet new winforms
生成):以下是
Program. cs
寻找一个新项目:The easiest way:
Starting with .Net Core 3 the easiest way to do it is to backup your
Program.cs
somewhere on a disk (or just using git) and run the following command whereProgram.cs
is located:It will replace your
Program.cs
and.csproj
. Then just copy required code from your oldProgram.cs
. That's it!For manually converting the project this may be helpful:
Here is how .Net Core 3 project looks like (generated using
dotnet new winforms
):Here is how
Program.cs
looks for a new project: