我在使用 Visual Studio 2012 时遇到问题。在接下来的操作:文件 - 创建 - 项目 - 应用程序 Windows 窗体之后,我收到此消息“无法为此文件显示设计器,因为无法设计其中的任何类”。我什么也不做。我已经尝试修复VS,但它无济于事。请告诉我我应该怎么做才能解决这个问题。下面有一段代码:
程序.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication9
{
static class Program
{
/// <summary>
/// Главная точка входа для приложения.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Form1.cs:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication9
{
public partial class Form1: Form
{
public Form1()
{
InitializeComponent();
}
}
}