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

时间:2009-10-20 02:54:28

标签: c# generics attributes windows-forms-designer

我有一个声明为:

的类

public class Foo<T> : 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<FooTestNameSpace.FooNodeType>'.
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控件是否显示为空盒子,只要它出现就好了!

2 个答案:

答案 0 :(得分:7)

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



class ConcreteFooCtl : FooCtl<FooNodeType>
{
}

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

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

答案 1 :(得分:1)

不是让Foo成为泛型,而是让它变得非泛型,并让它包含一个能够满足你需要的泛型类。然后,您可以将表单中的所有处理委托给班级。