22 lines
421 B
C#
22 lines
421 B
C#
|
|
|
|
|
|
// Based on Windows UI Library
|
|
// Copyright(c) Microsoft Corporation.All rights reserved.
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace WPFluent.Controls;
|
|
|
|
public class NavigationViewBreadcrumbItem
|
|
{
|
|
public NavigationViewBreadcrumbItem(INavigationViewItem item)
|
|
{
|
|
Content = item.Content;
|
|
PageId = item.Id;
|
|
}
|
|
|
|
public object Content { get; }
|
|
|
|
public string PageId { get; }
|
|
}
|