0

私はシルバーライトで行った小さな「ゲーム」に小さな colorApplication を統合しようとしています。

私はC#にちょっと慣れていないので、ネットで検索したところ、colorApplicationの実行方法を説明するものが見つかりました。

ここでは、背景色をオレンジから青に変更し、オートリバースを使用してオレンジに戻します。

ここに私のXAMLがあります

<Grid x:Name="LayoutRoot" Background="Orange">
    <Grid.Resources>
        <Storyboard x:Name="colorStoryboard">
            <ColorAnimation BeginTime="00:00:00" AutoReverse="True"
                            Storyboard.TargetName="LayoutRoot"
                            Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" 
                            Duration="00:00:02" From="Orange" To="Blue" />
        </Storyboard>
    </Grid.Resources>

    <sdk:Label Height="16" HorizontalAlignment="Left" Margin="162,12,0,0" 
               Name="label1" VerticalAlignment="Top" Width="84" 
               Content="Vrai ou Faux ?" />
    <Button Content="Vrai" Height="23" HorizontalAlignment="Left" Margin="59,61,0,0"
            Name="buttonVrai" VerticalAlignment="Top" Width="75" 
             Click="buttonVrai_Click" />
    <Button Content="Faux" Height="23" HorizontalAlignment="Left" Margin="267,61,0,0"
            Name="buttonFaux" VerticalAlignment="Top" Width="75" 
            Click="buttonFaux_Click" />
    <sdk:Label Height="20" HorizontalAlignment="Left" Margin="59,184,0,0" 
               Name="label2" VerticalAlignment="Top" Width="60" Content="Score" />
    <sdk:Label Height="20" HorizontalAlignment="Left" Margin="322,184,0,0" 
               Name="labelScore" VerticalAlignment="Top" Width="20" Content="0" />
    <Button Content="Redémarrer" Height="23" HorizontalAlignment="Left" 
            Margin="162,265,0,0" Name="buttonRedemarrer" VerticalAlignment="Top" 
            Width="84" Click="buttonRedemarrer_Click" />
</Grid>

チュートリアルに従っただけですが、うまくいきません。私の背景色は変わりません。私は何かを忘れましたか?助けてくれてありがとう...

4

3 に答える 3

2

問題は、おそらく何もアニメーションをトリガーしていないことです。たとえば、でアニメーションをトリガーすると、アニメーションは正常にWindow.Loaded動作します。

<Grid x:Name="LayoutRoot"
      Background="Orange">
  <Grid.Triggers>
    <EventTrigger RoutedEvent="Window.Loaded">
      <BeginStoryboard>
        <Storyboard x:Name="colorStoryboard">
          <ColorAnimation BeginTime="00:00:00"
                          AutoReverse="True"
                          Storyboard.TargetName="LayoutRoot"
                          Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)"
                          Duration="00:00:02"
                          From="Orange"
                          To="Blue" />
        </Storyboard>
      </BeginStoryboard>
    </EventTrigger>
  </Grid.Triggers>
  <!-- ETC -->
</Grid>

おそらく、ボタンのクリックまたは別のルーティング イベントで、何らかの方法でアニメーションをトリガーする必要があります。

于 2013-01-21T16:28:22.973 に答える
0

アニメーションを開始するには、メソッドなどを記述する必要はないと考えました。BeginTime = "00:00:00" を設定すると、暗黙的にアニメーションが開始されると思いました。このコードをコンパイルして実行できます。

だから今、私の「新しい質問」は次のとおりです。アニメーションを自動開始するにはどうすればよいですか?

于 2013-01-21T20:44:54.183 に答える