在c#中,为什么控制台应用程序里不能使用system.windows.form这个命名空间呢
2个回答
展开全部
可以的
在解决方案上右键,添加引用,找到system.windows.form,添加进去就可以使用了
比如,下面这个控制台程序就能弹出一个对话框
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
MessageBox.Show("hello,world");
}
}
}
在解决方案上右键,添加引用,找到system.windows.form,添加进去就可以使用了
比如,下面这个控制台程序就能弹出一个对话框
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
MessageBox.Show("hello,world");
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询