Reputation: 739
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
Reputation: 23270
Is this all you're looking for?
<StackPanel>
<Grid/>
<Grid/>
</StackPanel>
Upvotes: 2