开发者

How to add Type Parameters to XAML

I have the following class:

public class DefaultDropTargetAdvisor : IDropTargetAdvisor 
{

I 开发者_Go百科decided to make it have a generic parameter:

public class DefaultDropTargetAdvisor<TDragType>
       : IDropTargetAdvisor where TDragType : class
{

This was my XAML before the change:

<local:DefaultDropTargetAdvisor x:Key="targetAdvisor1"/>

How do I change that XAML to now reflect the type parameter? (I want to pass in a class called MockWI).

Clearly this does not work:

<local:DefaultDropTargetAdvisor<local:MockWI> x:Key="targetAdvisor1"/>

Any ideas?


Check out an identical SO question.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜