在C#WinForm中加载app.exe的符号

时间:2018-07-14 06:40:31

标签: c# visual-studio winforms

运行Winform时,没有异常或错误,并且看不到我的表单,但是在Visual Studio的底部,我看到了这一点:

enter image description here

它什么也没显示。

我的program.cs代码

 static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }

我该如何解决?

1 个答案:

答案 0 :(得分:-1)

如果这是一个git项目,请尝试

git clean -dfx

在Visual Studio关闭的情况下执行此操作。

git clean documentation