http://2.bp.blogspot.com/-bQZRfy4g4t0/TWK05e_Bx9I/AAAAAAAAAEY/nym2bRu-RjI/s1600/5.bmp製作按鈕變爲白色背景時按
如何讓我的按鈕被按下時包含白色背景圖像變化?
在默認情況下,當我按我的按鈕,它不顯示在按鈕圖像,並切換到電話口音的顏色。
這裏的按鈕的XAML代碼:
<VisualState x:Name="Pressed">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Source" Storyboard.TargetName="Img">
<DiscreteObjectKeyFrame KeyTime="0" Value="Assets/appbar.control.play.png" />
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Foreground" Storyboard.TargetName="ContentContainer">
<DiscreteObjectKeyFrame KeyTime="0" Value="Black"/>
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Background" Storyboard.TargetName="ButtonBackground">
<DiscreteObjectKeyFrame KeyTime="0" Value="White"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
我說我的按鈕的按下的視覺狀態代碼,可能你澄清我必須修改哪些代碼?根據你的需要在 – zhrnz