导航到XAML查看原因"参数不正确"错误

时间:2016-08-24 16:41:10

标签: uwp-xaml template10

在我的App.xaml.cs文件中,我能够无误地导航到相关视图。

public override async Task OnStartAsync(StartKind startKind, IActivatedEventArgs args)
{
    NavigationService.Navigate(typeof(Views.LogItemSearchPage));
    await Task.CompletedTask;
}

但是,当我通过汉堡菜单导航到视图时,我收到错误。

    <Controls:HamburgerButtonInfo AutomationProperties.Name="Search"
                                  ClearHistory="True"
                                  PageType="views:LogItemSearchPage">
        <StackPanel Orientation="Horizontal">
            <SymbolIcon Width="48"
                        Height="48"
                        Symbol="Find" />
            <TextBlock Margin="12,0,0,0"
                       VerticalAlignment="Center"
                       Text="Search" />
        </StackPanel>
    </Controls:HamburgerButtonInfo>

像往常一样,这曾经很好地工作,但是在错误出现的某个地方。页面不需要传入参数,ViewModel OnNavigatedTo方法也不使用。

0 个答案:

没有答案