在页面之间导航时,Windows存储应用程序暂停

时间:2013-04-13 18:12:40

标签: c# performance user-interface windows-store-apps

我正在使用OOTB网格应用模板构建Windows应用商店应用。我注意到当我从一个页面向前或向后导航时,有一个500-1000毫秒的暂停。当我按下后退按钮时(后箭头在500-1000毫秒内保持“命中”状态),主要是明显的。前进并不是那么糟糕,因为通常屏幕有动画和过渡来填充大部分加载时间。

我的第一个想法是LoadState方法中有一些东西导致了减速,但我唯一拥有的东西不是来自模板我在后台线程上运行并调用它async前言。

我的第二个想法是我将一个复杂的对象传递给每个页面的navigationParameter而不是传递一个简单的字符串。我不认为这可能是原因,因为对象应该通过引用传递,所以确实不应该有任何减速因为我将非字符串传递给NavigateTo方法。

(我没有阅读任何关于此的指导,所以我不知道页面导航在页面之间传递非字符串时是否不那么活泼。如果有人对此有任何见解,那将是美妙的)

我的下一个想法是我的Xaml太复杂了,暂停是Xaml将所有项目加载到列表中,什么不是。这可能是问题,如果是这样,我不知道如何测试或修复它。一旦加载了所有内容(页面上的所有项目都没有断断续续地滚动),UI会感觉流畅。

如果是这种情况,有没有办法显示Xaml生成的加载圈,然后一旦完成生成,淡出内容和圆圈?

我想要解决的主要问题是我不希望后退按钮在Hit中“冻结”。任何帮助或指导都会很棒!


基本应用信息:

页面包含具有不同项目模板的列表和网格视图控件的组合。没有使用图像或图形,但我在一些项目模板上使用渐变画笔(不是超级复杂,类似于开始画面项目渐变)。大多数列表只有20-30个项目,其中一些更少。

平均页面有1个项目源,2个项目显示控件,一个列表和一个滚动查看器,用于保存所选项目的详细信息。

任何项目的详细信息约为2-3个正常段落的详细信息文本和3-4< 20个字符串。


编辑:项目代码:

第1页代码

    protected async override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState)
    {
        if (navigationParameter == null)
            this.DefaultViewModel["Groups"] = GlobalData.Catalog.Catalog;
        else
            this.DefaultViewModel["Groups"] = navigationParameter;

        await GlobalData.LibraryDownload.DiscoverActiveDownloadsAsync();
    }

DiscoverActiveDownloadsAsync方法与this example code

中的代码相同 尚未从SaveState基类修改

OnNavigateToOnNavigateFromLayoutAwarePage方法。

代码

    protected async override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState)
    {
        if (navigationParameter is CatalogBook)
        {
            var catBook = (CatalogBook)navigationParameter;
            var book = catBook.Book;
            await book.InitializeAsync();

            this.DefaultViewModel["Group"] = catBook;
            this.DefaultViewModel["Items"] = book.Items;
        }
        else if (navigationParameter is IBook)
        {
            var book = await Task.Run<IBook>(async () =>
                {
                    var b = (IBook)navigationParameter;
                    await b.InitializeAsync();
                    return b;
                });

            this.DefaultViewModel["Group"] = book;
            this.DefaultViewModel["Items"] = book.Chapters;
        }

        if (pageState == null)
        {
            // When this is a new page, select the first item automatically unless logical page
            // navigation is being used (see the logical page navigation #region below.)
            if (!this.UsingLogicalPageNavigation() && this.itemsViewSource.View != null)
            {
                this.itemsViewSource.View.MoveCurrentToFirst();
            }
        }
        else
        {
            // Restore the previously saved state associated with this page
            if (pageState.ContainsKey("SelectedItem") && this.itemsViewSource.View != null)
            {
                var number = 0;
                if(!int.TryParse(pageState["SelectedItem"].ToString(), out number)) return;

                var item = itemsViewSource.View.FirstOrDefault(i => i is ICanon && ((ICanon)i).Number == number);
                if (item == null) return;

                this.itemsViewSource.View.MoveCurrentTo(item);

                itemListView.UpdateLayout();
                itemListView.ScrollIntoView(item);
            }
        }
    }


    ...


    protected override void SaveState(Dictionary<String, Object> pageState)
    {
        if (this.itemsViewSource.View != null)
        {
            var selectedItem = this.itemsViewSource.View.CurrentItem;
            pageState["SelectedItem"] = ((ICanon)selectedItem).Number;
        }
    }

InitializeAsync方法从SQLite数据库中读取有关书籍的一些基本信息(章节,作者等),并且通常运行得非常快(<10ms)

网格代码

我通过使用SQLite-net Nuget Package的异步方法查询SQLite数据库来获取数据。查询通常看起来像这样:

    public async Task InitializeAsync()
    {
        var chapters = await _db.DbContext.Table<ChapterDb>().Where(c => c.BookId == Id).OrderBy(c => c.Number).ToListAsync();

        Chapters = chapters
            .Select(c => new Chapter(_db, c))
            .ToArray();

        HeaderText = string.Empty;
    }

我使用以下Xaml填充网格:

    <CollectionViewSource
        x:Name="groupedItemsViewSource"
        Source="{Binding Groups}"
        IsSourceGrouped="true"
        ItemsPath="Items"
        d:Source="{Binding DisplayCatalog, Source={d:DesignInstance Type=data:DataCatalog, IsDesignTimeCreatable=True}}"/>

    <common:CatalogItemTemplateSelector x:Key="CatalogItemTemplateSelector" />

    ...

    <GridView
        Background="{StaticResource ApplicationPageLightBackgroundThemeBrushGradient}"
        ItemsSource="{Binding Source={StaticResource groupedItemsViewSource}}" 
        SelectionMode="Multiple"            
        Grid.Row="1" 
        ItemTemplateSelector="{StaticResource CatalogItemTemplateSelector}" 
        IsItemClickEnabled="True"
        ItemClick="ItemView_ItemClick" Margin="-40,0,0,0">
        <GridView.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal" Height="628" Margin="120,10,0,0" />
            </ItemsPanelTemplate>
        </GridView.ItemsPanel>
        <GridView.GroupStyle>
            <GroupStyle>
                <GroupStyle.HeaderTemplate>
                    <DataTemplate>
                        <Grid Margin="1,10,0,6">
                            <Button
                                AutomationProperties.Name="Group Title"
                                Click="Header_Click"
                                Style="{StaticResource TextPrimaryButtonStyle}" >
                                <StackPanel Orientation="Horizontal">
                                    <TextBlock Text="{Binding Name}" Margin="3,-7,10,10" Style="{StaticResource GroupHeaderTextStyle}" />
                                    <TextBlock Text="{StaticResource ChevronGlyph}" FontFamily="Segoe UI Symbol" Margin="0,-7,0,10" Style="{StaticResource GroupHeaderTextStyle}"/>
                                </StackPanel>
                            </Button>
                        </Grid>
                    </DataTemplate>
                </GroupStyle.HeaderTemplate>
                <GroupStyle.Panel>
                    <ItemsPanelTemplate>
                        <VariableSizedWrapGrid Margin="0,0,80,0" ItemHeight="{StaticResource ItemHeight}" ItemWidth="{StaticResource ItemWidth}"/>
                    </ItemsPanelTemplate>
                </GroupStyle.Panel>
            </GroupStyle>
        </GridView.GroupStyle>

    </GridView>

CatalogItemTemplateSelector类看起来像这样:

public class CatalogItemTemplateSelector : DataTemplateSelector
{
    protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
    {
        // cast item to your custom item class
        var customItem = item as ICatalogItem;
        if (customItem == null)
            return null;

        string templateName = String.Empty;
        if (customItem is CatalogFolder || customItem is CatalogMoreFolder)
        {
            templateName = "FolderItemDataTemplate";
        }
        else if (customItem is CatalogBook || customItem is CatalogMoreBook)
        {
            templateName = "BookItemDataTemplate";
        }

        object template = null;
        // find template in App.xaml
        Application.Current.Resources.TryGetValue(templateName, out template);
        return template as DataTemplate;
    }
}

两个模板都是~20行的Xaml,没什么特别的

如果还有其他我未包含的代码,请告诉我,我会添加它们。

2 个答案:

答案 0 :(得分:0)

我没有答案,但这个Channel 9(微软)视频在XAML性能上相当不错。也许它可以帮助你解决问题。

http://channel9.msdn.com/Events/Build/2012/4-103

答案 1 :(得分:0)

您的内存使用情况如何?你可以分页到磁盘吗?

摘录自http://paulstovell.com/blog/wpf-navigation

  

Page Lifecycles ....
  假设您的页面需要传递给它的某种参数数据:   ...导航时,如果单击   “返回”,WPF无法知道要传递给哪些值   构造函数;因此它必须保持页面活着。
  ...如果直接传递对象,WPF将使对象保持活动状态。