我正在尝试启动并运行概念验证 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);
}
}
}