在 Windows Phone 中,为 Grid 添加 Tilt 效果
2020-12-13 03:07
标签:style class blog code http tar 在 Windows Phone 中,Tilt 效果是比较经典的效果,我们可以很简单的为按钮等控件添加这样的效果(使用 Windows Phone Toolkit 的Tilt 效果),但是,如果我们想要让一个 Grid 也具有 Tilt 效果的话,如果直接这么写是不会起作用的: 为什么给按钮这样写是可以的,而Grid就失效了呢? 这是因为,Tilt效果只对 "Seleteable" 的项上,Grid 不是"Selecteable"的项…… 那怎么解决呢? 方法也很简单,有点取巧的意思,就是在Grid外边套上一个"Selectable"的项:ListBoxItem。写法是这样的: 这样Grid也就具有了Tilt效果了。 在 Windows Phone 中,为 Grid 添加 Tilt 效果,搜素材,soscw.com 在 Windows Phone 中,为 Grid 添加 Tilt 效果 标签:style class blog code http tar 原文地址:http://www.cnblogs.com/sirkevin/p/3796329.htmlGrid x:Name="GridGame" toolkit:TiltEffect.IsTiltEnabled="True">
ListBoxItem toolkit:TiltEffect.IsTiltEnabled="True">
Grid x:Name="GridGame">Grid>
ListBoxItem>
上一篇:spring之ioc详解
文章标题:在 Windows Phone 中,为 Grid 添加 Tilt 效果
文章链接:http://soscw.com/essay/27011.html