在XAML中使用System.Type

时间:2010-08-16 12:50:27

标签: c# wpf types

我需要能够在UserControl中设置System.Type类型的属性。我目前这样做:

XAML:

<MyUserControl x:Name="TheControl"/>

代码背后:

TheControl.TheType = typeof(My.NameSpace.MyType);

我希望能够做到这一点(仅限XAML):

<MyUserControl x:Name="TheControl" TheType="??"/>

有没有办法在XAML中使用typeof

1 个答案:

答案 0 :(得分:12)

使用x:Type Markup Extension

<MyUserControl 
    xmlns:myns="clr-namespace:My.NameSpace"
    x:Name="TheControl"
    TheType="{x:Type myns:MyType}"/>