Denys
Denys

Reputation: 25

Scrolling content when Flyout open

Simple page with two controls, Button and GridView. Button open a flyout with several another buttons. Gridview have a list of about 100 elements, so there is scrolling. If flyout of the button is opened, the scrolling will stop working, because the flyout is focused. How can I do if flyout is opened, the scrolling will continue working.

I use a UWP, C#.

Solved.

You can use popup instead of flyout, so the scrolling will be work correctly.

Upvotes: 1

Views: 54

Answers (1)

Roy Li - MSFT
Roy Li - MSFT

Reputation: 8666

The solution is that using a popup control instead of a Flyout control. When using a popup, the scrolling still work as expected.

Upvotes: 0

Related Questions