How to specify generic type argument in XAML

╄→гoц情女王★ 提交于 2019-11-28 00:50:41

问题


I have a BaseView for my MVP - PRISM WPF application. Now for some reason we thought to make the _presenter as a Templated field in the BaseView.

earlier i had the view xaml representation as

<base:BaseView xamlns:base="clr address of the dll which had BaseView" >

</base:BaseView>

now since i have changed the BaseView to BaseView<TPresenter>, So how shall i write the Xaml then?


回答1:


You can do it since .NET 4 Framework and XAML 2009. See Generics in XAML on MSDN

For instance:

<my:BusinessObject x:TypeArguments="x:String,x:Int32"/>

For .NET 3.5:

For XAML 2006 usage when specifically targeting WPF, x:Class must also be provided on the same element as x:TypeArguments, and that element must be the root element in a XAML document. The root element must map to a generic type with at least one type argument. An example is PageFunction.

Possible workarounds to support generic usages include defining a custom markup extension that can return generic types, or providing a wrapping class definition that derives from a generic type but flattens the generic constraint in its own class definition.



来源:https://stackoverflow.com/questions/7573712/how-to-specify-generic-type-argument-in-xaml

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!