Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的问题:我在 Windows 8 的 XAML/C# 应用程序中有一个 ScrollViewer。在 ScrollViewer 中有一个具有动态列数的网格,我在加载程序时在代码中设置了 ColumnDefenitions。但是当我尝试在 ScrollViewer 中滚动这个网格时
scrollViewer.ScrollToHorizontalOffset(myOffset);
它立即滚动,但我希望它滚动一段时间,顺利。请帮助我,我该怎么做?
可以使用 来实现Storyboard,请参见以下示例(甚至可以应用于 Windows Phone 8):
Storyboard
http://blogs.msdn.com/b/delay/archive/2009/08/04/scrolling-so-smooth-like-the-butter-on-a-muffin-how-to-animate-the-horizontal-垂直偏移属性-的-a-scrollviewer.aspx
编辑:
新链接:http ://dlaa.me/blog/post/9857745 (备份)