gpt4 book ai didi

c# - 以下方法 : Identical. NameSpace.InitializeComponent() 和 Identical.NameSpace.InitializeComponent() 之间的调用不明确

转载 作者:可可西里 更新时间:2023-11-01 08:52:08 26 4
gpt4 key购买 nike

好吧,我怀疑这可能是 Visual Studio 的问题,但肯定有一些原因。我从默认项目列表创建了一个 ListBox(右键单击项目或项目中的文件夹 -> 添加 -> 新项目 -> Xaml ListBox)。我立即收到一 strip 有错误的红色波浪线:

"Error 2 The call is ambiguous between the following methods or properties: 'Identical.NameSpace.ListBox1.InitializeComponent()' and 'Identical.NameSpace.ListBox1.InitializeComponent()' C:\Documents and Settings\ouflak\My Documents\Visual Studio 2010\Projects\Identical\NameSpace\ListBox1.xaml.cs 27"

所有有问题的代码都是自动生成的,错误的原因是两个自动生成的文件之间存在冲突:ListBox1.g.cs 和 ListBox1.designer.cs,其中 public void InitializeComponent() 在两者中都声明了。在这种情况下,代码自然无法编译。只需删除 ListBox1.designer.cs 并继续我想就足够简单了。 但我的问题是:为什么此代码会自动生成并出现此错误?我希望任何自动生成的东西都能够构建和编译,而无需触及项目或任何代码。对于您可以添加的几乎所有其他工具箱项目,情况都是如此。那么为什么要生成带有内置错误的代码呢?我们是否应该找到一些方法来完成这项工作?这段代码是否只是一个建议,由 IDE 用户/开发人员敲定细节?

这是生成的代码:ListBox1.xaml:

< ?xml version="1.0" encoding="utf-8" ? > 
< ListBox
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:xc="http://ns.neurospeech.com/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
x:Class="Identical.NameSpace.ListBox1"
>
<sys:String>Item 1</sys:String>
<sys:String>Item 2</sys:String>
<sys:String>Item 3</sys:String>
< /ListBox>

ListBox1.g.cs:

namespace Identical.Namespace
{
/// <summary>
/// ListBox1
/// </summary>
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public partial class ListBox1 : System.Windows.Controls.ListBox, System.Windows.Markup.IComponentConnector {

private bool _contentLoaded;

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/MyProject;component/namespace/listbox1.xaml", System.UriKind.Relative);

#line 1 "..\..\..\namespace\ListBox1.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);

#line default
#line hidden
}

[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

ListBox1.designer.cs:

namespace Identical.NameSpace
{
using System;

public partial class ListBox1 : System.Windows.Controls.ListBox
{
private void InitializeComponent()
{
// Pre Statements...
string string1 = "Item 1";
string string2 = "Item 2";
string string3 = "Item 3";
// Statements...
this.BeginInit();
this.Items.Add(string1);
this.Items.Add(string2);
this.Items.Add(string3);
this.EndInit();
// Post Statements...
}
}
}

最后是 ListBox1.xaml.cs(仅修改以防止 XML 文档和 Stylecop 警告):

namespace Identical.NameSpace
{
/// <summary>
/// ListBox1 class
/// </summary>
public partial class ListBox1 : ListBox
{
/// <summary>
/// Initializes a new instance of the ListBox1 class
/// </summary>
public ListBox1()
{
this.InitializeComponent();
}
}
}

就是这样。这是完全处于原始自动生成状态的代码,除了我放入 xaml.cs 文件中的注释。

我在这个网站和互联网上搜索了一下,但似乎没有人解释过这种行为。我可能只会删除 designer.cs 代码并继续。但是,如果有人首先知道这是为什么,或者它是否确实是 Visual Studio 2010 专业版中的错误,我真的很想知道。

最佳答案

我在控件之间复制 XAML 时遇到了这个问题。我只需要更改我的 x:Class="mynamespace",其中 mynamespace 是您项目的正确命名空间。重新编译,一切恢复正常。

关于c# - 以下方法 : Identical. NameSpace.InitializeComponent() 和 Identical.NameSpace.InitializeComponent() 之间的调用不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20420623/

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