设置源数据时删除过渡 [英] Removing transitions when setting source data

查看:69
本文介绍了设置源数据时删除过渡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在Windows 8应用商店应用程序中使用默认模板作为项目网格时,在设置集合源时,我会得到一些漂亮的过渡.如何删除这些过渡?

When I use the default templates in Windows 8 Store apps for an item grid, I get some nifty transitions when the source of the collection is set. How can I remove these transitions?

我正在对数据进行过滤,我不喜欢每次数据更改时数据如何褪色.

I am doing a filter on the data and I dont like how the data fades in every time the data changes.

推荐答案

您可以通过覆盖ItemContainerTransitions来删除它们.如果您将以下样式添加到页面资源:-

You can remove them by overriding the ItemContainerTransitions. If you add the following style to the page resources:-

    <Page.Resources>
    <Style x:Key="NoAnimations" TargetType="GridView">         
        <Setter Property="ItemContainerTransitions">
            <Setter.Value>
                <TransitionCollection>                        
                </TransitionCollection>
            </Setter.Value>
        </Setter>           
    </Style>
</Page.Resources>

然后将您的gridview的样式设置为NoAnimations:

Then set the style of your gridview to NoAnimations:

<GridView Grid.Row="1" Style="{StaticResource NoAnimations}">

那应该为您解决.如果您不想放开所有动画,则可以添加一些动画-这是gridview上默认动画的列表:-

That should take care of it for you. If you don't want to loose all of the animations then you can add some of them back - here is a list of the default animations on the gridview:-

<TransitionCollection>                       
    <AddDeleteThemeTransition/>
    <ContentThemeTransition/>
    <ReorderThemeTransition/>
    <EntranceThemeTransition IsStaggeringEnabled="False"/>
</TransitionCollection>

这篇关于设置源数据时删除过渡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆