6

我有这样的代码:

这是基类:

public class BaseClass : UserControl
{
     protected ListView list;
     protected TreeView tree;

     public BaseClass()
     {
         //...
     }
     //...
}

儿童班

public partial class MyClass : BaseClass
{
     public MyClass()
     {
         InitializeComponent();
         this.BackColor = VisualStyleInformation.TextControlBorder;
         this.Padding = new Padding(1);
     }
     //...
}

partial class MyClass
{
    //...

    private void InitializeComponent()
    {
         this.tree = new System.Windows.Forms.TreeView();
         this.list = new System.Windows.Forms.ListView();
         //...
         this.tree.Location = new System.Drawing.Point(0, 23);
         this.tree.Name = "blablabla";
    }
}

和警告:

Warning 1 The variable 'tree' is either undeclared or was never assigned.
Warning 2 The variable 'list' is either undeclared or was never assigned.

我究竟做错了什么 ?该变量在基类中声明,并在子类中分配。

4

2 回答 2

5

这个问题没有答案,所以这里......

重建解决方案然后重新启动 Visual Studio为我工作:-)

感谢SLaks的上述评论。

也在讨论:

stackoverflow.com - 变量“variable_name”要么未声明,要么从未分配。

social.msdn.microsoft.com - 变量“control_name”未声明或从未分配。

于 2014-03-14T08:16:15.230 回答
0

我和设计师遇到了这个问题,每次的主要原因是我的解决方案是为 x64 输出设置的。目前,设计人员无法处理 x64 解决方案集中的控件,因此您需要将其更改为 Any CPU,进行编辑,然后将其更改回 x64 以进行运行/调试。

于 2021-11-05T22:02:10.137 回答