Yeasin Abedin
Yeasin Abedin

Reputation: 2443

XAML code review

I am totally new to 8.1 Store App in Visual Studio. Can any one help me what this below code means that comes with default Grid App template for Store app 8.1

<Grid.ChildrenTransitions>
            <TransitionCollection>
                <EntranceThemeTransition/>
            </TransitionCollection>
        </Grid.ChildrenTransitions>

Upvotes: 0

Views: 79

Answers (1)

Chirag Shah
Chirag Shah

Reputation: 981

Its nothing but the animation transition applied to the children of that grid when they appear on the screen. You can explore it here.

Upvotes: 1

Related Questions