运行时Silverlight DockPanel异常
我在UserControl中有一个DockPanel,并且在设计器中看起来一切正常,但是在运行时从InitializeComponent()中得到一个异常:
找不到'DockPanel'类型,因为'http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit'是一个未知的命名空间。
任何想法?
<UserControl x:Class="Controls.PropertiesControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:my="clr-namespace:Controls"
xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"
mc:Ignorable="d"
d:DesignHeight="250" d:DesignWidth="800"
>
<Grid x:Name="LayoutRoot" Background="White">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<toolkit:DockPanel Background="Gray" Grid.Row="0" Grid.Column="0" />
</Grid>
</Grid>
</UserControl>
你在项目中引用了正确的System.Windows.Controls.Toolkit.dll程序集吗? 如果您使用Silverlight 4,请确保它是正确的版本4(不是3)。
链接地址: http://www.djcxy.com/p/34545.html上一篇: Silverlight DockPanel exception in runtime
下一篇: AllowDrop of *DragDropTarget not available in latest Silverlight toolkit 4