Represents the preconfigured animation that conceals a target UI using a split animation.
Inheritance
- Object
- DependencyObject
- Timeline
- SplitCloseThemeAnimation
Syntax
<SplitCloseThemeAnimation .../>
Attributes
- ActivatableAttribute(NTDDI_WIN8)
- MarshalingBehaviorAttribute(Agile)
- StaticAttribute(Windows.UI.Xaml.Media.Animation.ISplitCloseThemeAnimationStatics, NTDDI_WIN8)
- ThreadingAttribute(Both)
- VersionAttribute(NTDDI_WIN8)
- WebHostHiddenAttribute()
Members
The SplitCloseThemeAnimation class has these types of members:
Constructors
The SplitCloseThemeAnimation class has these constructors.
| Constructor | Description |
|---|---|
| SplitCloseThemeAnimation | Initializes a new instance of the SplitCloseThemeAnimation class. |
Events
The SplitCloseThemeAnimation class has these events.
| Event | Description |
|---|---|
| Completed | Occurs when the Storyboard object has completed playing. (Inherited from Timeline) |
Methods
The SplitCloseThemeAnimation class has these methods. It also inherits methods from the Object class.
| Method | Description |
|---|---|
| ClearValue | Clears the local value of a dependency property. (Inherited from DependencyObject) |
| GetAnimationBaseValue | Returns any base value established for a dependency property, which would apply in cases where an animation is not active. (Inherited from DependencyObject) |
| GetValue | Returns the current effective value of a dependency property from a DependencyObject. (Inherited from DependencyObject) |
| ReadLocalValue | Returns the local value of a dependency property, if a local value is set. (Inherited from DependencyObject) |
| SetValue | Sets the local value of a dependency property on a DependencyObject. (Inherited from DependencyObject) |
Properties
The SplitCloseThemeAnimation class has these properties.
| Property | Access type | Description |
|---|---|---|
| Read/write | Gets or sets a value that indicates whether the timeline plays in reverse after it completes a forward iteration. (Inherited from Timeline) | |
| Read/write | Gets or sets the time at which this Timeline should begin. (Inherited from Timeline) | |
| Read/write | Gets or sets the initial size of the target element in the animation direction. | |
| Read-only | Identifies the ClosedLength dependency property. | |
| Read/write | Gets or sets the UI element that specifies the initial clip size. | |
| Read/write | Gets or sets the identifying name of the UI element that specifies the initial clip size. | |
| Read-only | Identifies the ClosedTargetName dependency property. | |
| Read-only | Identifies the ClosedTarget dependency property. | |
| Read/write | Gets or sets the UI element that will be translated. Typically this is a child/part of the element identified by OpenedTargetName or OpenedTarget. | |
| Read/write | Gets or sets the identifying name of the UI element that will be translated. Typically this is a child/part of the element identified by OpenedTargetName. | |
| Read-only | Identifies the ContentTargetName dependency property. | |
| Read-only | Identifies the ContentTarget dependency property. | |
| Read/write | Gets or sets a value that determines which direction the content should translate when the animation runs. | |
| Read-only | Identifies the ContentTranslationDirection dependency property. | |
| Read/write | Gets or sets the pixels to translate by when the animation runs. | |
| Read-only | Identifies the ContentTranslationOffset dependency property. | |
| Read-only | Gets the CoreDispatcher that this object is associated with. (Inherited from DependencyObject) | |
| Read/write | Gets or sets the length of time for which this timeline plays, not counting repetitions. (Inherited from Timeline) | |
| Read/write | Gets or sets a value that specifies how the animation behaves after it reaches the end of its active period. (Inherited from Timeline) | |
| Read/write | Gets or sets an offset from the center of the opened target. | |
| Read-only | Identifies the OffsetFromCenter dependency property. | |
| Read/write | Gets or sets the final size of the target UI element. | |
| Read-only | Identifies the OpenedLength dependency property. | |
| Read/write | Gets or sets the UI element that will be clipped. | |
| Read/write | Gets or sets the identifying name of the UI element that will be clipped. | |
| Read-only | Identifies the OpenedTargetName dependency property. | |
| Read-only | Identifies the OpenedTarget dependency property. | |
| Read/write | Gets or sets the repeating behavior of this timeline. (Inherited from Timeline) | |
| Read/write | Gets or sets the rate, relative to its parent, at which time progresses for this Timeline. (Inherited from Timeline) |
Remarks
Note that setting the Duration property has no effect on this object since the duration is preconfigured.
Examples
The following is an example of a template of a custom control that uses split open and split close theme animations.
<!-- Example template of a custom control that uses split open and split close theme animations. --> <ControlTemplate TargetType="local:SplitOpenControl"> <Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="OpenStates"> <VisualState x:Name="Open"> <Storyboard> <SplitOpenThemeAnimation OpenedTargetName="contentBorder" ContentTargetName="content" ClosedTargetName="targetRect" ContentTranslationDirection="Left" ContentTranslationOffset="200" OffsetFromCenter="0" OpenedLength="200" ClosedLength="0" /> <DoubleAnimation Storyboard.TargetName="targetRect" Storyboard.TargetProperty="Opacity" To="0" Duration="0" /> </Storyboard> </VisualState> <VisualState x:Name="Closed"> <Storyboard> <SplitCloseThemeAnimation OpenedTargetName="contentBorder" ContentTargetName="content" ClosedTargetName="targetRect" ContentTranslationDirection="Left" ContentTranslationOffset="-200" OffsetFromCenter="0" OpenedLength="200" ClosedLength="0" /> </Storyboard> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <Rectangle x:Name="targetRect" Width="100" Height="100" Fill="Blue" /> <Popup IsOpen="False" Height="50" Width="200" x:Name="contentPopup"> <Border x:Name="contentBorder" BorderBrush="Orange" BorderThickness="3"> <TextBlock x:Name="content" Text="Hello World" FontSize="20" /> </Border> </Popup> </Grid> </ControlTemplate>
public sealed class SplitOpenControl : Control { private Popup _contentPopup; public SplitOpenControl() { this.DefaultStyleKey = typeof(SplitOpenControl); } protected override void OnApplyTemplate() { base.OnApplyTemplate(); _contentPopup = GetTemplateChild("contentPopup") as Popup; } protected override void OnPointerPressed(PointerRoutedEventArgs e) { this.CapturePointer(e.Pointer); _contentPopup.IsOpen = true; VisualStateManager.GoToState(this, "Open", true); } protected override void OnPointerReleased(PointerRoutedEventArgs e) { VisualStateManager.GoToState(this, "Closed", true); this.ReleasePointerCapture(e.Pointer); } }
Requirements
|
Minimum supported client | Windows 8 [Windows Store apps only] |
|---|---|
|
Minimum supported server | Windows Server 2012 [Windows Store apps only] |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 12/4/2012