首页 > 解决方案 > 在 UWP 中单击汉堡菜单项时如何提高应用程序性能?

问题描述

我在我的 UWP 应用程序中为 MVVM 和汉堡菜单使用模板 10。通常从一页到另一页导航需要 2 到 3 秒。App在后台超过5小时,然后回到前台,页面导航需要8秒。如何减少页面到页面导航的延迟?

菜单项的 XAML 代码:

```<Controls:HamburgerButtonInfo ClearHistory="True" x:Name="manifest" Selected="manifest_Selected" Unselected="manifest_Unselected" PageType="views:Manifest">
                <StackPanel Orientation="Horizontal">
                    <BitmapIcon Width="30" Height="30" x:Name="manifesticon" Margin="10,20,0,0" UriSource="ms-appx:///Assets/ic_menu_manifest.png"/>
                    <TextBlock Margin="16,20,0,0" x:Name="manifesttext"
                           VerticalAlignment="Center"
                           Text="Manifest" />
                </StackPanel>
   </Controls:HamburgerButtonInfo>```

CS代码:

public void manifest_Selected(object sender, RoutedEventArgs e)
    {
        reportElement = new HamburgerButtonInfo();
        manifesticon.Foreground = (Brush)Application.Current.Resources["HeaderBackground"];
        manifesttext.Foreground = (Brush)Application.Current.Resources["HeaderBackground"];
        reportElement = manifest;
        if (report.IsEnabled)
        {
            report_Unselected(sender, e);
        }
    }

    public void manifest_Unselected(object sender, RoutedEventArgs e)
    {
        manifesticon.Foreground = new SolidColorBrush(Color.FromArgb(255, 229, 229, 229));
        manifesttext.Foreground = new SolidColorBrush(Color.FromArgb(255, 229, 229, 229));
    }

标签: c#windowsuwpuwp-xamluwp-navigation

解决方案


通常从一个页面到另一个页面导航需要 2 到 3 秒。

你不应该在页面的构造器中处理同步调用,它会阻塞 ui 线程,使导航消耗更多时间。

目前,UWP 包含NavigationView用于管理导航的 Native,更多内容请参考这里

您还可以使用模板工作室制作模板应用程序,这样可以节省更多时间来配置应用程序的基础架构。更多细节请参考这里


推荐阅读