c# WPF x:Type mode 如何指定DLL里面的model而不是自身的??
展开全部
这需要在 xaml 中加入命名,比如要在 xaml 加入对 System.DataTime 的访问
xmlns:sys="clr-namespace:System;assembly=mscorlib"
下面的示例没什么意义,只是用来说明其用法
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<Window.Resources>
<DataTemplate x:Key="dt" DataType="{x:Type sys:DateTime}">
<TextBlock Text="{Binding Path=Now}"/>
</DataTemplate>
</Window.Resources>
<Grid>
<TextBlock Text="{Binding Source={x:Static sys:DateTime.Now}, Path=Day}"/>
</Grid>
</Window>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询