我的界面定义是: public interface IInterface其中T:UserControl
我的班级定义是: public partial class App1Control:UserControl,IInterface
我的app.config的统一部分如下所示:
<unity>
<typeAliases>
<typeAlias alias="singleton" type="Microsoft.Practices.Unity.ContainerControlledLifetimeManager, Microsoft.Practices.Unity" />
<typeAlias alias="myInterface" type="MyApplication.IInterface`1, MyApplication" />
<typeAlias alias="App1" type="MyApplication.App1Control, MyApplication" />
</typeAliases>
<containers>
<container>
<types>
<type type="myInterface" mapTo="App1" name="Application 1">
<lifetime type="singleton"/>
</type>
</types>
</container>
</containers>
</unity>
应用程序运行正常但是,以下代码提供了InvalidCastException
container.Resolve<IInterface<UserControl>>("Application 1");
错误消息是:
无法将“MyApplication.App1Control”类型的对象强制转换为“MyApplication.IInterface`1 [System.Windows.Forms.UserControl]”
我相信我的代码中存在一个小错误......但我无法弄清楚是什么。有什么想法吗?
答案 0 :(得分:0)
来自OP Sunny D的评论:
App1Control的定义有误。当我从以下位置更改定义时,问题已解决:
public partial class App1Control : UserControl, myInterface<App1Control>
为:
public partial class App1Control : UserControl, myInterface<UserControl>