Silverlight 4 Stack 面板 - 当项目被移除时动画子项
我想修改堆栈面板,因此当从其中删除某个项目时,其下方的所有项目都会以动画方式向上滑动以填补缺失的间隙。为了实现这一目标,我需要采取什么方法?
I want to modify a stack panel, so when an item is removed from it all the items under it slides in animation upwards to fill the missing gap. what is the approach I need to take in order to achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用 ListBox,并将其 ItemsPanel 设为 StackPanel。然后,修改项目的样式以在 AfterLoaded、BeforeLoaded 和 BeforeUnloaded 视觉状态中包含动画。
http://msdn.microsoft.com/en-us/magazine/ff798276.aspx
Use ListBox instead, and have its ItemsPanel be a StackPanel. Then, modify the style of the items to include an animation in AfterLoaded, BeforeLoaded, and BeforeUnloaded visual states.
http://msdn.microsoft.com/en-us/magazine/ff798276.aspx