Class XamlLessPageStackEntry
- Namespace
- WindowSill.API
- Assembly
- WindowSill.API.dll
Represents an entry in the navigation stack maintained by a XamlLessFrame. Each entry contains information about a navigated page including its type, parameters, and transition animation.
public sealed class XamlLessPageStackEntry
- Inheritance
-
XamlLessPageStackEntry
- Inherited Members
- Extension Methods
Properties
NavigationTransitionInfo
Gets the navigation transition information that was used when navigating to this page entry. This defines the visual animation that was applied during the navigation transition.
public NavigationTransitionInfo? NavigationTransitionInfo { get; }
Property Value
Parameter
Gets the parameter that was passed during navigation to the page represented by this entry. This can be any object used to pass data between pages during navigation.
public object? Parameter { get; }
Property Value
SourcePageType
Gets the type of the page represented by this navigation stack entry. This is the XamlLessPage-derived type that was navigated to.
public Type SourcePageType { get; }