我似乎无法将表单和设计器文件链接到我的项目中.它们在Solution Explorer中看起来像这样.

我已从项目中排除了文件,然后尝试将它们包含在项目中,但这不起作用.下面是设计器代码和表单代码的片段,以防有什么内容.
public partial class FormPrompt
{
  private Button ButtonOk;
  private Container Components;
  private Label LabelPleaseEnter;
  private Label LabelPrompt;
  private TextBox TextBoxData;
  private void InitializeComponent()
  {
    this.LabelPleaseEnter = new Label();
    this.LabelPrompt = new Label();
    this.TextBoxData = new TextBox();
    this.ButtonOk = new Button();
    this.LabelPleaseEnter.Location = new Point(8, 0x58);
    this.LabelPleaseEnter.Size = new Size(0x48, 0x10);
    this.LabelPleaseEnter.Text = "Please enter";
    this.LabelPrompt.Location = new Point(80, 0x58);
    this.LabelPrompt.Size = new Size(0x98, 0x10);
    this.LabelPrompt.Text = "LabelPrompt";
    this.TextBoxData.Location = new Point(8, 0x80);
    this.TextBoxData.Size = new Size(0xe0, 20); …当我用VB.NET打开一个 Visual Studio 项目时,表单视图设计器会自动打开,但我用C# .NET Core 3.1和 Windows 表单打开一个新项目,然后它显示了form1.cs 的代码。我也尝试从解决方案资源管理器以及视图> > 设计器选项中替代,但仍然没有显示表单。那里出了什么问题?我对此进行了谷歌搜索,但没有发现对此有用。
请检查我在开幕项目期间获得的图像。:

当我使用 .NET Core 和最新的 Visual Studio 2019 社区版更新创建新的 Windows 桌面窗体应用程序时,我无法查看窗体的设计视图,即 Form1.cs[Design]。当我单击适当标记的 Form1.cs 文件时,它只会打开代码视图。