Reputation: 25
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
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