0

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

构建您的第一个 PivotViewer 应用程序

我在根目录中有一个 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);
        }
    }
}
4

1 回答 1

1

好的,这里有一些适合您的方法。

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

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

让我知道这两个建议带来了什么。

于 2011-06-02T17:56:13.307 回答