Golubev_A
Golubev_A

Reputation: 3

UWP custom control with overflow layout

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

enter image description here enter image description here

Upvotes: 0

Views: 336

Answers (1)

Allan Smith
Allan Smith

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

Related Questions