如何解决入口点路径错误?

时间:2016-01-19 23:48:00

标签: xaml path windows-phone-8.1 manifest entry-point

问题: 我已将应用程序中的视图移动到名为“Views”的新文件夹。但在移动视图后,我注意到我收到了一个navigation_failed事件。

调试步骤:

为了调试这个,我在事件中的异常消息上设置断点。这导致我导致错误,编译器无法找到移动视图的位置。

enter image description here

我尝试通过更新AppManifest.xml中的入口点和NavigationPage路径来解决此问题。到视图的新路径和此路径不正确的异常点。

错误:"No XAML was found at the location '/ParkingTagPicker.Views.MainPage'."

我在清单文件中更新了此处的入口点:

EntryPoint="ParkingTagPicker.Views.MainPage"

问题:

在这种情况下,有人可以建议正确的路径字符串吗?

我的MainPage.xaml位置如下所示:

<phone:PhoneApplicationPage x:Class="ParkingTagPicker.Views.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:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
                            xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
                            FontFamily="{StaticResource PhoneFontFamilyNormal}"
                            FontSize="{StaticResource PhoneFontSizeNormal}"
                            Foreground="{StaticResource PhoneForegroundBrush}"
                            Orientation="Portrait"
                            SupportedOrientations="Portrait"
                            d:DataContext="{d:DesignData SampleData/MainViewModelSampleData.xaml}"
                            shell:SystemTray.IsVisible="True"
                            mc:Ignorable="d">

1 个答案:

答案 0 :(得分:0)

当页面位于子文件夹中时,您必须为其指定完整路径,例如“Views / MainPage.xaml”

在应用中的页面之间导航时,同样有效,例如:

  NavigationService.Navigate(new Uri("/Pages/ChartComparePage.xaml", UriKind.Relative));