我需要能够在UserControl中设置System.Type类型的属性。我目前正在这样做:
XAML:
<MyUserControl x:Name="TheControl"/>
后面的代码:
TheControl.TheType = typeof(My.NameSpace.MyType);
我希望能够做到这一点(仅XAML):
<MyUserControl x:Name="TheControl" TheType="??"/>
有没有一种方法可以在XAML中使用
typeof
? 最佳答案
<MyUserControl
xmlns:myns="clr-namespace:My.NameSpace"
x:Name="TheControl"
TheType="{x:Type myns:MyType}"/>
关于c# - 在XAML中使用System.Type,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3493241/