我有一个奇怪的错误,当我尝试打开一个文件对话框时,它会返回到 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();
}
}
}