0

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

1 回答 1

1

因此,在无休止地搞砸了它之后,我请我的一位老师帮助我。问题是调试设置为使用任何 cpu 运行。将其设置为 x64 后,它起作用了。

于 2013-10-31T11:19:39.460 回答