CommonNavigationTransitionInfo
CommonNavigationTransitionInfo
CommonNavigationTransitionInfo
CommonNavigationTransitionInfo
Class
Definition
Provides common parameters for navigation transition animations.
public : sealed class CommonNavigationTransitionInfo : NavigationTransitionInfo, ICommonNavigationTransitionInfopublic sealed class CommonNavigationTransitionInfo : NavigationTransitionInfo, ICommonNavigationTransitionInfoPublic NotInheritable Class CommonNavigationTransitionInfo Inherits NavigationTransitionInfo Implements ICommonNavigationTransitionInfo// This API is not available in Javascript.
<NavigationThemeTransition>
<CommonNavigationTransitionInfo ... />
</NavigationThemeTransition>
- Inheritance
-
CommonNavigationTransitionInfoCommonNavigationTransitionInfoCommonNavigationTransitionInfoCommonNavigationTransitionInfo
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Inherited properties
Constructors
CommonNavigationTransitionInfo() CommonNavigationTransitionInfo() CommonNavigationTransitionInfo() CommonNavigationTransitionInfo()
Initializes a new instance of the CommonNavigationTransitionInfo class.
public : CommonNavigationTransitionInfo()public CommonNavigationTransitionInfo()Public Sub New()// This API is not available in Javascript.
Properties
IsStaggerElementProperty IsStaggerElementProperty IsStaggerElementProperty IsStaggerElementProperty
Identifies the CommonNavigationTransitionInfo.IsStaggerElement attached property.
public : static DependencyProperty IsStaggerElementProperty { get; }public static DependencyProperty IsStaggerElementProperty { get; }Public Static ReadOnly Property IsStaggerElementProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the CommonNavigationTransitionInfo.IsStaggerElement attached property.
IsStaggeringEnabled IsStaggeringEnabled IsStaggeringEnabled IsStaggeringEnabled
Gets or sets a Boolean value indicating if staggering is enabled for the navigation transition.
public : PlatForm::Boolean IsStaggeringEnabled { get; set; }public bool IsStaggeringEnabled { get; set; }Public ReadWrite Property IsStaggeringEnabled As bool// This API is not available in Javascript.
<CommonNavigationTransitionInfo IsStaggeringEnabled="bool"/>
- Value
- PlatForm::Boolean bool bool bool
A Boolean value indicating if staggering is enabled for the navigation transition.
IsStaggeringEnabledProperty IsStaggeringEnabledProperty IsStaggeringEnabledProperty IsStaggeringEnabledProperty
Identifies the IsStaggeringEnabled dependency property.
public : static DependencyProperty IsStaggeringEnabledProperty { get; }public static DependencyProperty IsStaggeringEnabledProperty { get; }Public Static ReadOnly Property IsStaggeringEnabledProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the IsStaggeringEnabled dependency property.
Methods
GetIsStaggerElement(UIElement) GetIsStaggerElement(UIElement) GetIsStaggerElement(UIElement) GetIsStaggerElement(UIElement)
Returns a Boolean value indicating if the specified UIElement is the stagger element for the navigation transition.
public : static PlatForm::Boolean GetIsStaggerElement(UIElement element)public static bool GetIsStaggerElement(UIElement element)Public Static Function GetIsStaggerElement(element As UIElement) As bool// This API is not available in Javascript.
The UIElement to check as being the stagger element.
Returns true if element is the stagger element; otherwise false.
Remarks
This method supports XAML usage of the CommonNavigationTransitionInfo.IsStaggerElement attached property.
- See Also
SetIsStaggerElement(UIElement, Boolean) SetIsStaggerElement(UIElement, Boolean) SetIsStaggerElement(UIElement, Boolean) SetIsStaggerElement(UIElement, Boolean)
Sets a Boolean value indicating if the specified UIElement is the stagger element for the navigation transition.
public : static void SetIsStaggerElement(UIElement element, bool value)public static void SetIsStaggerElement(UIElement element, Boolean value)Public Static Function SetIsStaggerElement(element As UIElement, value As Boolean) As void// This API is not available in Javascript.
The UIElement about which to set the stagger element indicator.
- value
- bool Boolean Boolean Boolean
Set this value to true if element is the stagger element; otherwise set it to false.
Remarks
This method supports XAML usage of the CommonNavigationTransitionInfo.IsStaggerElement attached property.
- See Also