Improved keyboad shortcuts.
This commit is contained in:
@@ -13,13 +13,16 @@ public partial class BreadcrumbNavigationItemViewModel : ObservableObject
|
||||
|
||||
public int StepNumber { get; set; }
|
||||
|
||||
public int BackStackDepth { get; set; }
|
||||
|
||||
public BreadcrumbNavigationRequested Request { get; set; }
|
||||
|
||||
public BreadcrumbNavigationItemViewModel(BreadcrumbNavigationRequested request, bool isActive, int stepNumber = 0)
|
||||
public BreadcrumbNavigationItemViewModel(BreadcrumbNavigationRequested request, bool isActive, int stepNumber = 0, int backStackDepth = 0)
|
||||
{
|
||||
Request = request;
|
||||
Title = request.PageTitle;
|
||||
IsActive = isActive;
|
||||
StepNumber = stepNumber;
|
||||
BackStackDepth = backStackDepth;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user