1

エラー: 「プロパティ Background の属性値が無効です。」

XAML:

<VisualState x:Name="Pressed">
    <Storyboard>
        ....
        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonBackground" Storyboard.TargetProperty="Background">
            <DiscreteObjectKeyFrame KeyTime="0" Value="/Images/home_2_click.png" />
        </ObjectAnimationUsingKeyFrames>
        ....
    </Storyboard>
</VisualState>
4

1 に答える 1

2

アニメーション中にボタンに背景画像を適用しているようです。確かに、あなたはそれを間違った方法で適用しています。次のことを行う必要があります。

<DiscreteObjectKeyFrame KeyTime="0:0:1">
    <DiscreteObjectKeyFrame.Value>
        <ImageBrush ImageSource="" />
    </DiscreteObjectKeyFrame.Value>
</DiscreteObjectKeyFrame>

これは確かにあなたの問題を解決します。もしそうなら、これを受け入れられた答えとしてマークしてください。ありがとう

于 2012-06-13T15:15:47.603 に答える