VisualState.Storyboard Proprietà

Definizione

Ottiene o imposta un oggetto Storyboard che definisce l'aspetto del controllo quando questo è nello stato rappresentato dall'oggetto VisualState.

public:
 property System::Windows::Media::Animation::Storyboard ^ Storyboard { System::Windows::Media::Animation::Storyboard ^ get(); void set(System::Windows::Media::Animation::Storyboard ^ value); };
public System.Windows.Media.Animation.Storyboard Storyboard { get; set; }
member this.Storyboard : System.Windows.Media.Animation.Storyboard with get, set
Public Property Storyboard As Storyboard

Valore della proprietà

Storyboard

Storyboard che definisce l'aspetto del controllo quando questo è nello stato rappresentato dall'oggetto VisualState. Il valore predefinito è null.

Esempio

Nell'esempio seguente viene creato un semplice ControlTemplate oggetto Button contenente un Gridoggetto . Il VisualState denominato MouseOver ha un Storyboard che modifica il colore del Grid verde al rosso quando l'utente inserisce il mouse sopra .Button Il VisualState chiamato Normal è incluso in modo che quando l'utente sposta il mouse fuori dal pulsante, il Grid restituisce in verde.

<ControlTemplate TargetType="Button">
  <Grid >
    <VisualStateManager.VisualStateGroups>
      <VisualStateGroup x:Name="CommonStates">

        <VisualStateGroup.Transitions>

          <!--Take one half second to trasition to the MouseOver state.-->
          <VisualTransition To="MouseOver" 
            GeneratedDuration="0:0:0.5"/>
        </VisualStateGroup.Transitions>

        <VisualState x:Name="Normal" />

        <!--Change the SolidColorBrush, ButtonBrush, to red when the
            mouse is over the button.-->
        <VisualState x:Name="MouseOver">
          <Storyboard>
            <ColorAnimation Storyboard.TargetName="ButtonBrush" 
              Storyboard.TargetProperty="Color" To="Red" />
          </Storyboard>
        </VisualState>
      </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    <Grid.Background>
      <SolidColorBrush x:Name="ButtonBrush" Color="Green"/>
    </Grid.Background>
  </Grid>
</ControlTemplate>

Commenti

Quando il controllo immette lo stato specificato dalla VisualState.Name proprietà, inizia.Storyboard Quando il controllo esce dallo stato, l'arresto Storyboard .

Si applica a