已经定义了成员'InitializeComponent'使用相同的参数类型

本文关键字:参数 类型 定义 成员 InitializeComponent | 更新日期: 2023-09-27 18:02:11

我试图调用InitializeComponent方法,尽管我得到以下错误:

Type 'WindowsFormsApplication1.Form1' already defines a member called 'InitializeComponent' with the same parameter types

代码如下:

 public Form1()
        {
            InitializeComponent();
        }

............

 private void InitializeComponent()
    {
      this.Browser = new WebBrowser();
      this.panel1 = new Panel();
      this.txtNavigate = new TextBox();
      this.cmdGo = new Button();
    }
  }

已经定义了成员'InitializeComponent'使用相同的参数类型

已经定义了InitializeComponent方法,请检查设计器生成的代码

private关键字改为partial:

partial void InitializeComponent()