Silverlight无法加载PivotViewer集合

时间:2011-06-02 17:01:38

标签: silverlight visual-studio-2010 pivotviewer

我正在尝试启动并运行概念验证PivotViewer应用程序,但即使在测试环境中也无法正确加载集合。我正在遵循这些指示:

Building Your First PivotViewer Application

我在根目录中有一个clientaccesspolicy XML文件,允许所有URI访问。我复制了一个已经存在的集合,并将其放在根目录中。集合XML正确检出。

每当我尝试调试应用程序时,它会加载但只显示集合的URL,而不是实际构建PivotViewer。

MainPage.xaml中:

<UserControl x:Class="PivotViewer.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.Pivot;assembly=System.Windows.Pivot"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <Pivot:PivotViewer x:Name="Pivot" />
    </Grid>
</UserControl>

MainPage.xaml.cs中:

namespace PivotViewer
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
            Pivot.LoadCollection("http://localhost:55334/Top_Movies.cxml", string.Empty);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

好的,这里有很多方法可以帮助你。

首先,在调用LoadCollection方法之前连接PivotViewer的CollectionLoadingFailed事件。这将公开包含任何异常的CollectionErrorEventArgs。

其次,安装Fiddler2并使用它来观看PivotViewer请求的内容。如果它未能到达枢轴集合的某些部分,那将是非常明显的。

让我知道这两个建议的含义。