运行时Silverlight DockPanel异常

时间:2011-04-04 11:01:09

标签: silverlight exception runtime dockpanel

我在UserControl中有一个DockPanel,在设计器中看起来很好,但是我在运行时从InitializeComponent()得到一个异常:

找不到“Doc​​kPanel”类型,因为“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>

1 个答案:

答案 0 :(得分:1)

您是否在项目中引用了正确的 System.Windows.Controls.Toolkit.dll 程序集?如果您使用的是Silverlight 4,请确保它是正确的版本4(而不是3)。