我有一个奇怪的错误,当我尝试打开一个文件管理器时,它会回到visual studio,就是这样,它只是关闭了表单。
这是我的整个代码,它只是一个带有1个按钮的测试表单。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace Week7_Oprd1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
OpenFileDialog ofd = new OpenFileDialog();
private void button1_Click(object sender, EventArgs e)
{
ofd.ShowDialog();
}
}
}
答案 0 :(得分:1)
因此,在无休止地讨论它之后,我让我的一位老师帮助我。 问题是调试设置为与任何CPU运行。 将它设置为x64之后就可以了。