RemoveStoryboard 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除 Storyboard 的觸發程序動作。
public ref class RemoveStoryboard sealed : System::Windows::Media::Animation::ControllableStoryboardAction
public sealed class RemoveStoryboard : System.Windows.Media.Animation.ControllableStoryboardAction
type RemoveStoryboard = class
inherit ControllableStoryboardAction
Public NotInheritable Class RemoveStoryboard
Inherits ControllableStoryboardAction
- 繼承
-
RemoveStoryboard
範例
下列範例示範如何移除 Storyboard ,以在使用者離開包含 Storyboard 的頁面時,將其停止繼續。
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Name="RootPage">
<StackPanel>
<!-- The MediaElement control plays the sound. -->
<MediaElement Name="myMediaElement" />
<Button Name="BeginButton">Begin</Button>
<StackPanel.Triggers>
<!-- This trigger causes the Storyboard to start (the music start) when you click the
"BeginButton" button. -->
<EventTrigger RoutedEvent="Button.Click" SourceName="BeginButton">
<EventTrigger.Actions>
<BeginStoryboard Name="myBeginStoryboard">
<Storyboard>
<MediaTimeline Source="C:\WINDOWS\Media\town.mid" Storyboard.TargetName="myMediaElement"
RepeatBehavior="Forever" />
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
<!-- When this page unloads, like when you navigate away from the page, this
trigger causes the Storyboard to be removed and the clock to stop. If
you come back to this page and click the button to start the Storyboard,
the music starts from the beginning. Alternatively, if you don't unload
the Storyboard when you leave the page, the Storyboard does not stop while
you're gone and when you navigate back to the page you hear the music
continuing as though you had never left. -->
<EventTrigger RoutedEvent="Page.Unloaded" >
<EventTrigger.Actions>
<RemoveStoryboard BeginStoryboardName="myBeginStoryboard" />
</EventTrigger.Actions>
</EventTrigger>
</StackPanel.Triggers>
</StackPanel>
</Page>
備註
搭配 RemoveStoryboardEventTrigger 或 Trigger 使用 來移除 Storyboard 。
以互動方式暫停、繼續、停止、移除或控制分鏡腳本
若要能夠暫停、繼續、移除或以互動方式控制 Storyboard ,請設定 Name 其 BeginStoryboard 的 屬性,並使用 ControllableStoryboardAction 物件 (例如 PauseStoryboard 、 ResumeStoryboard 或 StopStoryboard) ,藉由參考其 來控制它 Name 。 Name如果未指定 的 BeginStoryboard , Storyboard 則無法在開始之後以互動方式控制 。 如需詳細資訊,請參閱 如何:使用事件觸發程式來控制腳本開始之後 。
移除分鏡腳本的時機
您應該使用 RemoveStoryboard 動作來移除以 的 Compose 開頭 HandoffBehavior 的任何分鏡腳本。 當動畫物件不再使用時,移除背景動畫也是個不錯的主意。 例如,如果您使用元素的事件來套用無限重複的 Loaded 分鏡腳本,您也應該建立 , EventTriggerRemoveStoryboard 該腳本會使用動作來移除元素 Unloaded 事件上的分鏡腳本。
建構函式
RemoveStoryboard() |
初始化 RemoveStoryboard 類別的新執行個體。 |
屬性
BeginStoryboardName |
取得或設定 BeginStoryboard 的 Name,開始您想要以互動方式控制的 Storyboard。 (繼承來源 ControllableStoryboardAction) |
DependencyObjectType |
DependencyObjectType取得包裝這個實例之 CLR 型別的 。 (繼承來源 DependencyObject) |
Dispatcher |
取得與這個 Dispatcher 關聯的 DispatcherObject。 (繼承來源 DispatcherObject) |
IsSealed |
取得值,這個值表示此執行個體目前是否已密封 (唯讀)。 (繼承來源 DependencyObject) |