BreadcrumbBarItem
Property
| Name |
| RootItem |
| ItemsSource |
| ItemTemplate |
| EllipsisButtonToolTip |
| RootItemToolTip |
| RootItemChevronToolTip |
BreadcrumbBarItem
Property
| Name |
| IsEllipsis |
| IsLastItem |
| ItemToolTip |
| ChevronToolTip |
Example
1 2 3
| <dev:BreadcrumbBar EllipsisButtonToolTip="More folders" ItemsSource="{x:Bind Items, Mode=OneWay}" RootItemToolTip="Root Folder" />
|
1 2 3 4 5 6 7
| public ObservableCollection<BreadcrumbBarItem> Items { get; set; } = new ObservableCollection<BreadcrumbBarItem> { new BreadcrumbBarItem { Content = "Home" }, new BreadcrumbBarItem { Content = "Documents" }, new BreadcrumbBarItem { Content = "Projects" }, new BreadcrumbBarItem { Content = "2026" } };
|

Demo
you can run demo and see this feature.