C#.net using System.Windows.Forms.Design 用不了 控制台程序,如何实现一个选择文件文件对话框?
C#.net的程序,用不了OpenFileDialog()因为不能usingSystem.Windows.Forms.Design如何能够得到一个选择文件对话框?然后获得...
C# .net的程序,
用不了 OpenFileDialog() 因为不能using System.Windows.Forms.Design
如何能够得到一个选择文件对话框?然后获得文件的存储路径和文件名称以及文件?
请大侠,侠女帮忙解决解决!!谢谢先:) 展开
用不了 OpenFileDialog() 因为不能using System.Windows.Forms.Design
如何能够得到一个选择文件对话框?然后获得文件的存储路径和文件名称以及文件?
请大侠,侠女帮忙解决解决!!谢谢先:) 展开
展开全部
控制台程序弹出对话框的做法是比较异类的,如果能用其他方法传入文件名,最好用其他方法。
如果你必须用OpenFileDialog,首先确认你的程序引用了System.Windows.Forms程序集,然后按照下列代码调用
using System;
using System.Windows.Forms;
namespace ConsoleApplication4
{
class Program
{
[STAThread]
static void Main(string[] args)
{
OpenFileDialog d = new OpenFileDialog();
DialogResult r = d.ShowDialog();
}
}
}
如果你必须用OpenFileDialog,首先确认你的程序引用了System.Windows.Forms程序集,然后按照下列代码调用
using System;
using System.Windows.Forms;
namespace ConsoleApplication4
{
class Program
{
[STAThread]
static void Main(string[] args)
{
OpenFileDialog d = new OpenFileDialog();
DialogResult r = d.ShowDialog();
}
}
}
追问
System.Windows.Forms 不能被引用啊。
报错如下:
error CS0234: The type or namespace name 'Windows' does not exist in the namespace 'System' (are you missing an assembly reference?)
追答
应该首先引用System.Windows.Forms程序集,点击 工程(Project) 菜单,添加引用(Add Reference),找到System.Windows.Forms,选中确定,然后再用这个代码
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询