我需要能够在UserControl中设置System.Type类型的属性。我目前这样做:
XAML:
<MyUserControl x:Name="TheControl"/>
代码背后:
TheControl.TheType = typeof(My.NameSpace.MyType);
我希望能够做到这一点(仅限XAML):
<MyUserControl x:Name="TheControl" TheType="??"/>
有没有办法在XAML中使用typeof
?
答案 0 :(得分:12)
<MyUserControl
xmlns:myns="clr-namespace:My.NameSpace"
x:Name="TheControl"
TheType="{x:Type myns:MyType}"/>