ContinuumNavigationTransitionInfo Class

Definition

Specifies the object that will fly between pages to provide context during a continuum transition.

public ref class ContinuumNavigationTransitionInfo sealed : NavigationTransitionInfo
/// [Windows.Foundation.Metadata.Activatable(65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class ContinuumNavigationTransitionInfo final : NavigationTransitionInfo
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
class ContinuumNavigationTransitionInfo final : NavigationTransitionInfo
[Windows.Foundation.Metadata.Activatable(65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class ContinuumNavigationTransitionInfo : NavigationTransitionInfo
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
public sealed class ContinuumNavigationTransitionInfo : NavigationTransitionInfo
Public NotInheritable Class ContinuumNavigationTransitionInfo
Inherits NavigationTransitionInfo
<NavigationThemeTransition>
  <ContinuumNavigationTransitionInfo ... />
</NavigationThemeTransition>
Inheritance
Object Platform::Object IInspectable DependencyObject NavigationTransitionInfo ContinuumNavigationTransitionInfo
Attributes

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)

Remarks

XAML attached properties

ContinuumNavigationTransitionInfo is the host service class for several XAML attached properties.

In order to support XAML processor access to the attached properties, and also to expose equivalent get and set operations to code, each XAML attached property has a pair of Get and Set accessor methods. Another way to get or set the value in code is to use the dependency property system, calling either GetValue or SetValue and passing the identifier field as the dependency property identifier.

Attached property Description
ExitElementContainer Gets or sets a value that indicates whether this element is the container of the exit element for the navigation transition.
IsEntranceElement Gets or sets a value that indicates whether this element is the entrance element for the continuum navigation.
IsExitElement Gets or sets a value that indicates whether this element is the exit element for the continuum navigation.

Constructors

ContinuumNavigationTransitionInfo()

Initializes a new instance of the ContinuumNavigationTransitionInfo class.

Properties

Dispatcher

Gets the CoreDispatcher that this object is associated with. The CoreDispatcher represents a facility that can access the DependencyObject on the UI thread even if the code is initiated by a non-UI thread.

(Inherited from DependencyObject)
ExitElement

Gets or sets the element that will fly between pages during a continuum navigation transition.

ExitElementContainerProperty

Identifies the ContinuumNavigationTransitionInfo.ExitElementContainer attached property.

ExitElementProperty

Identifies the ExitElement dependency property.

IsEntranceElementProperty

Identifies the ContinuumNavigationTransitionInfo.IsEntranceElement attached property.

IsExitElementProperty

Identifies the ContinuumNavigationTransitionInfo.IsExitElement attached property.

Attached Properties

ExitElementContainer

Gets or sets a value that indicates whether this element is the container of the exit element for the navigation transition.

IsEntranceElement

Gets or sets a value that indicates whether this element is the entrance element for the continuum navigation.

IsExitElement

Gets or sets a value that indicates whether this element is the exit element for the continuum navigation.

Methods

ClearValue(DependencyProperty)

Clears the local value of a dependency property.

(Inherited from DependencyObject)
GetAnimationBaseValue(DependencyProperty)

Returns any base value established for a dependency property, which would apply in cases where an animation is not active.

(Inherited from DependencyObject)
GetExitElementContainer(ListViewBase)

Returns a Boolean value indicating if the specified element is the ExitElement container.

GetIsEntranceElement(UIElement)

Returns a Boolean value indicating if the specified UIElement is the entrance element for the continuum navigation.

GetIsExitElement(UIElement)

Returns a Boolean value indicating if the specified UIElement is the exit element of the continuum navigation.

GetNavigationStateCore()

When implemented in a derived class, gets the navigation state string that is reported for navigation actions through Frame.Navigate and similar API.

(Inherited from NavigationTransitionInfo)
GetValue(DependencyProperty)

Returns the current effective value of a dependency property from a DependencyObject.

(Inherited from DependencyObject)
ReadLocalValue(DependencyProperty)

Returns the local value of a dependency property, if a local value is set.

(Inherited from DependencyObject)
RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)

Registers a notification function for listening to changes to a specific DependencyProperty on this DependencyObject instance.

(Inherited from DependencyObject)
SetExitElementContainer(ListViewBase, Boolean)

Sets a Boolean value indicating that the specified element is the exit element container for the continuum navigation.

SetIsEntranceElement(UIElement, Boolean)

Sets a Boolean value indicating if the specified UIElement is the entrance element for the continuum navigation.

SetIsExitElement(UIElement, Boolean)

Sets a Boolean value indicating if the specified UIElement is the exit element for the continuum navigation.

SetNavigationStateCore(String)

When implemented in a derived class, sets the navigation state string that is passed for navigation actions through Frame.Navigate and similar API.

(Inherited from NavigationTransitionInfo)
SetValue(DependencyProperty, Object)

Sets the local value of a dependency property on a DependencyObject.

(Inherited from DependencyObject)
UnregisterPropertyChangedCallback(DependencyProperty, Int64)

Cancels a change notification that was previously registered by calling RegisterPropertyChangedCallback.

(Inherited from DependencyObject)

Applies to

See also