0

我使用 silverlight 4 创建了一个简单的测试类库,我想在我的 WP7 项目中使用它。

我在 WP7 项目中引用了 dll,无法使用我创建的控件。在使用控件之前,我需要知道应该将什么语句添加到我的 xaml 文件中。

这是类库的 xaml 文件(只有一个矩形):

<UserControl x:Class="NabbeshControls.ProfileBox"
    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"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <Rectangle Fill="#FFABABFF" Margin="10" Stroke="Black"/>
    </Grid>
</UserControl>

谢谢...

4

1 回答 1

2

假设库中控件的命名空间是“NabbeshControls”并且 dll 称为“Nabbesh.dll”,请将以下内容添加到您要使用它的 XAML 的顶部:

 xmlns:tryNabbesh="clr-namespace:NabbeshControls;assembly=Nabbesh"
于 2013-02-02T13:16:10.283 回答