-1
に頼ることなく、ボタンのクリックに異なるXAMLコントロールのアニメーションを呼び出す:私は次のXAML持っているのviewmodels
<Button Content="{Binding Header}" Background="Blue" Name="PanelHeader">
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Stackpanel"
Storyboard.TargetProperty="Height"
From="0" To="100" Duration="0:0:3" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
を、私は、スタックパネル宣言にストーリーボードのアニメーションを移動し、単にボタンからそのアニメーションを呼び出したいですクリック。
ほとんどの例では、viewmodelやその他のコードビハインドの使用方法に頼っています。