我目前正在制作的一个项目不断地从设计师那里得到错误,并说设计师的代码行并不包含定义。
我在C#编码。
错误CS1061' Form1'不包含' Form1_Load'的定义 没有扩展方法' Form1_Load'接受第一个论点 输入' Form1'可以找到(你是否错过了使用指令或 装配参考?)
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(405, 327);
this.Controls.Add(this.bunifuFlatButton2);
this.Controls.Add(this.bunifuFlatButton1);
this.Controls.Add(this.bunifuMaterialTextbox2);
this.Controls.Add(this.bunifuMaterialTextbox1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Form1";
this.Text = "Form1"; ↓↓↓↓↓↓↓↓↓↓
this.Load += new System.EventHandler(this.Form1_Load); ← Error here
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
Here is the alert it's giving.
如果您想要设计师提供更多代码,或者您希望我从我的项目中添加代码,请在下面留言。
答案 0 :(得分:0)
只是评论这一行
this.Load += new System.EventHandler(this.Form1_Load); ← Error here
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();