gpt4 book ai didi

c# - 可以找到错误 CS1061 “...Does Not Contain Definition and No Extension Method...accepting a first argument of type ”

转载 作者:行者123 更新时间:2023-12-04 13:44:33 26 4
gpt4 key购买 nike

我是 .NET Visual Studio 的新手,正在构建 Windows 窗体应用程序。

在尝试构建解决方案时,我遇到了下面描述的以下错误。我不确定它是否与文件“SuperAdventure.SuperAdventure”或未指定的控件有关。

'SuperAdventure.SuperAdventure' does not contain a definition for 'label5_Click' and no extension method 'label5_Click' accepting a first argument of type 'SuperAdventure.SuperAdventure' could be found (are you missing a using directive or an assembly reference?)



这是错误代码,错误在标记行中的代码下显示红色波浪线/线。
// lblExperience
//
this.lblExperience.AutoSize = true;
this.lblExperience.Location = new System.Drawing.Point(110, 73);
this.lblExperience.Name = "lblExperience";
this.lblExperience.Size = new System.Drawing.Size(35, 13);
this.lblExperience.TabIndex = 6;
this.lblExperience.Text = "label7";
this.lblExperience.Click += new System.EventHandler(this.label5_Click); // <-- squiggly line here

在输出上它给出了这个:
  • 1>------ 构建开始:项目:引擎,配置:发布任何
    CPU ------
  • 1> 引擎 -> C:\Users\Admin\Documents\Visual Studio
    2013\Projects\SuperAdventure\Engine\bin\Release\Engine.dll
  • 2>------
    构建开始:项目:SuperAdventure,配置:发布任何
    CPU ------
  • 2>c:\Users\Admin\Documents\Visual Studio
    2013\Projects\SuperAdventure.Designer.cs(119,70,119,82): 错误
    CS1061:“SuperAdventure.SuperAdventure”不包含
    'label5_Click' 的定义和无扩展方法
    'label5_Click' 接受类型的第一个参数
    可以找到“SuperAdventure.SuperAdventure”(您是否错过了
    using 指令或程序集引用?)========== 构建:1
    成功,1 次失败,0 次更新,0 次跳过 ==========

  • 如果我需要提供更多信息,请告诉我。
    PS:我是一个初学者,试图通过构建 RPG 游戏作为练习来学习一些 C#。

    最佳答案

    快速解决方案:删除 this.lblExperience 并重新创建。

    该控件似乎无法找到它的单击事件处理程序,并且不会太复杂,删除该控件然后双击它会创建一个新的处理程序并正确绑定(bind)它。

    其他快速解决方案:删除该行。但是你没有处理它的 click 事件,这可能是故意的。

    关于c# - 可以找到错误 CS1061 “...Does Not Contain Definition and No Extension Method...accepting a first argument of type ”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51158189/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com