Breadcrumb bar doesn't show link to navigate previous folder level on hover #7723
Unanswered
ApoorvaPetkar
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I added breadcrumb component in my project and tried several things, but link on hover on breadcrumb is not shown to navigate back to previously displayed folders.
My code for breadcrumb is here
<BreadcrumbBar x:Name="FolderBreadcrumbBar" ItemsSource="{x:Bind ViewModel.Breadcrumbs}" ItemClicked="FolderBreadcrumbBar_ItemClicked"> <BreadcrumbBar.ItemTemplate> <DataTemplate x:DataType="models:Breadcrumb"> <TextBlock Text="{x:Bind Label}"/> </DataTemplate> </BreadcrumbBar.ItemTemplate> </BreadcrumbBar>
I was trying to have hyperlink enabled to navigate to previous folder level in breadcrumb, Like below example
On click on Folder1 it navigates back to that level, but my issue is the hyperlink on Folder1 is not shown to trigger my onclick handler.
It doesn't highlight the link on hover of the mouse like below ex:
Can someone please help where I'm going wrong or how I can achieve this. Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions