apero
apero

Reputation: 1154

How to float a grid above another grid in XAML Windows8

I'm searching now for more than 15minutes to get a answer whit no succes.

My problem is that i want to float a grid above another grid.

Is this possible? if so how can i do this?

I tried to get my idea to sketch.

My sketch

Any code examples would be great.

Upvotes: 0

Views: 201

Answers (1)

Chris W.
Chris W.

Reputation: 23280

<Grid><!-- This Grid acts as a container -->
   <Grid>
      <!-- This Grid would be on the bottom -->
   </Grid>
   <Grid>
      <!-- This Grid would be on the top -->
   </Grid>
</Grid>

Hope this helps... :)

Upvotes: 2

Related Questions