Reputation: 3
In default maps application there are control, that overflows other content on page. It's height can be changed by sliding up and sliding down this layout. Is there way to implement that control?
P.S. sorry for my english
Upvotes: 0
Views: 336
Reputation: 162
With a Grid
or Canvas
control you can overlay controls.
If you used a Grid
control you would put all elements on the same Grid.Row
but the order they appear in the XAML would determine their Z-Index. The control you want at the bottom could then be placed by setting the VerticalAlignment
to Bottom
.
Upvotes: 1