当前位置:  开发笔记 > 编程语言 > 正文

复杂的类声明混淆了表单设计者?

如何解决《复杂的类声明混淆了表单设计者?》经验,为你挑选了1个好方法。

我有一个类声明为:

public class Foo : Panel where T : Control, IFooNode , new()
{
    ...
}

我手动添加它来测试它,但我最终需要一些可以在Forms设计器中显示的东西.表单设计师不喜欢这样,它说:

Could not find type 'FooTestNameSpace.Foo'.
Please make sure that the assembly that
contains this type is referenced.
If this type is a part of your development project, make
sure that the project has been successfully built. 

有趣的是,我也得到了类似的警告,但包括我在变量声明中使用的泛型类型.警告是:

Could not find type 'FooTestNameSpace.Foo'.
Please make sure that the assembly that contains this type is referenced.
If this type is a part of your development project,
make sure that the project has been successfully built.

我的简单Form1类中的声明是:

private FooTestNameSpace.Foo myFoo;

(FooNodeType实际上只是Label的一个子类,它有一个尚未使用的辅助属性;它确实实现了IFooNode).

所以我的问题......通过这种类型的设置,如何让Foo显示在Forms设计器上,或者至少让它承认Foo是合法的?是否有任何Designer属性可以处理这个?我真的不在乎我的Foo控件是否显示为空盒子,只要它出现就可以了!



1> FrustratedWi..:

好的,我想我有一个解决方案:


class ConcreteFooCtl : FooCtl
{
}

class FooCtl : Panel where T : Control, IFooNode , new()
{
}

问题似乎是Forms设计器无法处理任何通用控件.表单设计者无法处理FooCtl,但对ConcreteFooCtl没有任何问题.不是一个理想的解决方案,但我认为它至少是可行的.也许下一版本的VS会在向表单添加通用控件时提示用户指定泛型类型...;)

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有