I'm working on creating a Windows 10 Universal app that has a fixed header with three buttons across the top. Each button would bring the user to a certain place on the page. Basically what anchoring does in HTML. Is this possible with Xaml/C#? Any ideas on how this would work would be greatly appreciated!
Asked
Active
Viewed 299 times
1 Answers
1
Your question has been answered before, here is a solution about how to scroll to the certain place. I think this would be helpful to you .
You may use MyScrollView.ChangeView(null, abosulatePosition.Y, null, true);
or MyScrollView.ScrollToElement(otherTb);

Community
- 1
- 1

John Zhang
- 354
- 2
- 13
-
Thanks! This worked! – robbiestells Dec 01 '15 at 14:38