我有一个类声明为:
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控件是否显示为空盒子,只要它出现就可以了!
好的,我想我有一个解决方案:
class ConcreteFooCtl : FooCtl{ } class FooCtl : Panel where T : Control, IFooNode , new() { }
问题似乎是Forms设计器无法处理任何通用控件.表单设计者无法处理FooCtl,但对ConcreteFooCtl没有任何问题.不是一个理想的解决方案,但我认为它至少是可行的.也许下一版本的VS会在向表单添加通用控件时提示用户指定泛型类型...;)