Raz Harush
Raz Harush

Reputation: 739

Placing an element exactly below another one on WP8?

I would like to place a GRID element just below another GRID element using XAML just like Android's layout below. How can it be done, if possible?

Upvotes: 1

Views: 315

Answers (1)

Chris W.
Chris W.

Reputation: 23270

Is this all you're looking for?

<StackPanel>
   <Grid/>
   <Grid/>
</StackPanel>

Upvotes: 2

Related Questions