2

我有一个名为的用户控件Editor,它是StackCustomWindow命名空间的一部分。命名空间包含程序的StackCustomWindow主要形式。当我Editor使用设计器将用户控件添加到主窗口时,Visual Studio 2010 在设计器中放置如下代码:

this.editor1 = new StackCustomWindow.Editor();

什么时候应该是这样的:

this.editor1 = new Editor();

编译抛出异常:

错误 1 ​​类型中不存在类型名称“Editor”

'StackCustomWindow.StackCustomWindow' C:\Users\ricardo\Documents\Visual Studio

2010\Projects\StackCustomWindow\StackCustomWindow\StackCustomWindow.Designer.cs 35 51 StackCustomWindow

我发现了一个类似的问题,一个解决方案说在解决方案中的某处必须存在重复的名称,但是 a)我不知道为什么在这种情况下会存在,因为我没有其他具有该名称的控件,并且 b)我不知道如何检查是否确实存在重复名称。我没有任何其他用户控件或名为 的项目Editor,Visual Studio 为我的所有用户控件执行此操作。正如您在下面看到的,所有代码都非常基本,除了用户控件和主窗口之外没有其他控件。

代码Editor

使用 System.Windows.Forms;

namespace StackCustomWindow
{
    public partial class Editor : UserControl
    {
        public Editor()
        {
            InitializeComponent();
        }
    }
}

它的designer.cs文件:

namespace StackCustomWindow
{
    partial class Editor
    {
        /// <summary> 
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Component Designer generated code

        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.SuspendLayout();
            // 
            // Editor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "Editor";
            this.Size = new System.Drawing.Size(452, 276);
            this.ResumeLayout(false);

        }

        #endregion

    }
}

StackCustomWindow.cs:

使用 System.Windows.Forms;

namespace StackCustomWindow
{
    public partial class StackCustomWindow : Form
    {
        public StackCustomWindow()
        {
            InitializeComponent();
        }

    }
}

StackCustomWindow.designer.cs:

namespace StackCustomWindow
{
    partial class StackCustomWindow
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.SuspendLayout();
            // 
            // StackCustomWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(718, 535);
            this.Name = "StackCustomWindow";
            this.Text = "StackCustomWindow";
            this.ResumeLayout(false);

        }

        #endregion

    }
}
4

2 回答 2

10

问题是 StackCustomWindow 类型的名称与 StackCustomWindow 命名空间相同。所以 StackCustomWindow.Editor 最终被解释为“StackCustomWindow 类型的成员 'Editor'”,而不是“命名空间 StackCustomWindow 的成员 'Editor'”。

为命名空间和类型使用不同的名称将防止此问题。

你的代码是有效的,设计师生成的代码不是。代码生成器不希望你做你做过的事情,也没有很好地处理它。

于 2012-08-06T15:00:14.587 回答
-1

你可能与System.Collections.Stack System.Collections.Generic.Stack班级发生冲突。您是否正在使用这些命名空间 ( System.Collections, System.Collections.Generic) 中的任何一个?

于 2012-08-06T14:45:21.183 回答