1

如何在 Silverlight xaml 中使用 PivotViewer?我阅读了http://msdn.microsoft.com/en-us/library/system.windows.controls.pivot.pivotviewer(v=vs.95).aspx并添加了对程序集的引用。但我得到一个错误

名称空间“ http://schemas.microsoft.com/client/2007 ”中不存在名称“PivotViewer” 。

这是我的 xaml:

<UserControl x:Class="SilverlightApplication2.MainPage"
    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">
        <TextBlock Text="Hello world"></TextBlock>
        <PivotViewer/>
    </Grid>
</UserControl>
4

2 回答 2

2

System.Windows.Controls.Pivot然后添加了对程序集的引用

<UserControl x:Class="SilverlightApplication2.MainPage"
    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:pivot="clr-namespace:System.Windows.Controls.Pivot;assembly=System.Windows.Controls.Pivot"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <TextBlock Text="Hello world"></TextBlock>
        <pivot:PivotViewer x:Name="pViewer"  />
    </Grid>
</UserControl>
于 2013-03-22T09:56:28.750 回答
1

我的博客上有一个使用 PivotViewer 的系列。那应该让你开始。http://tonychampion.net/blog/index.php/series/pivotviewer-basics/

于 2013-03-21T13:25:11.070 回答