有些时候我们需要对ListBox中的某项做出一种点击动画,即点击ListBox的某项时,被点的Item播放一个相应的动画。通常,我们需要自定义ListBox的ItemTemplate以做出自定义的ListBoxItem。下面,我讲讲如何利用Expression Blend和Visual Studio 分别实现这样的效果。
一. 使用Expression Blend 1. 创建Windows Phone Databound Application 2. 去掉MainListBox_SelectionChanged中的事件,由于模板中代码是选中ListBox某项就进去该项的Detail Page,我们不需要,所以暂时先注释掉,如下图: 3. 编辑MainListBox的模板 4. 选择States卡片,新建一个state group 5. 命名为Selected,这时候注意到页面外围有一个红框,表示我们正在录制相应的State 6.在Objects and Timeline中选择第一个textBlock,将其属性面板中的TranslateX设为204 7.切换到Assets卡片,我们对StackPanel加上相应的Behavior控制,选中GoToStateAction,拖拽至Objects and Timeline中的StackPanel上,如下图: 8. 运行程序,点击某项后,第一行文字会向右运动。 说明:上述方法其实是使用State去实现相应的动画的,下面以Visual Studio编码的形式真正实现播放动画。 二、使用Visual Studio 运行效果图下图,点击ListBox中的某项后,图片会旋转180度 下面是Button的Click事件 Expression Blend Source Code Visual Studio Souce Code<DataTemplate x:Key="DT_ListBox"> <Button BorderThickness="0" Click="Btn_Click"> <StackPanel Orientation="Horizontal"> <Image x:Name="imgD" Height="48" Width="48" Source="/appbar.back.rest.png" RenderTransformOrigin="0.5,0.5"> <Image.RenderTransform> <CompositeTransform /> </Image.RenderTransform> </Image> <TextBlock Text="{Binding}" /> </StackPanel> <Button.Resources> <Storyboard x:Name="sb_TurnRight" Storyboard.TargetName="imgD" Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.Rotation)"> <DoubleAnimation From="0" To="180" /> </Storyboard> </Button.Resources> </Button> </DataTemplate>
private void Btn_Click(object sender, RoutedEventArgs e)
{
var btn = sender as Button;
if (btn!=null)
{
var sb = btn.Resources["sb_TurnRight"] as Storyboard;
if (sb!=null)
{
sb.Begin();
}
}
}
说明:Visual Studio的方法其实是将StoryBoard存在模板的Resouce中,然后在代码中获取并播放,灵活性更大一些。
Windows Phone 实用开发技巧(26):对DataTemplate中的元素播放动画
原创文章标签 职场 休闲 Windows Phone 7 Windows Phone实用开发技巧 文章分类 运维
-
Windows Phone 实用开发技巧(10):Windows Phone 中处理图片的技巧
在开发Windows Phone应用程序的时候,或多或少会与图片打交道,下面总结下Windows Phone 中处理图片的一些技巧1. 图片格式.2. 图片编译方式3. 图片加载方式4. 图片缓存5. GIF图片6. 图片大小限制7. 图片选择器1. 图片格式
职场 移动开发 休闲 Windows Phone 7 Windows Phone实用开发技巧