Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't let the ItemsControls in Navigation Fluents focusable. #180

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/WPFUI/Styles/Controls/NavigationFluent.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@
<ItemsControl
Grid.Row="0"
Width="250"
Focusable="False"
ItemsSource="{TemplateBinding Items}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled">
Expand All @@ -279,6 +280,7 @@

<ItemsControl
Grid.Row="1"
Focusable="False"
ItemsSource="{TemplateBinding Footer}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled">
Expand All @@ -298,4 +300,4 @@
</Style.Resources>
</Style>

</ResourceDictionary>
</ResourceDictionary>
4 changes: 3 additions & 1 deletion src/WPFUI/Styles/Controls/NavigationStore.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@
<ItemsControl
Grid.Row="0"
Width="250"
Focusable="False"
ItemsSource="{TemplateBinding Items}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled">
Expand All @@ -262,6 +263,7 @@

<ItemsControl
Grid.Row="1"
Focusable="False"
ItemsSource="{TemplateBinding Footer}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
ScrollViewer.VerticalScrollBarVisibility="Disabled">
Expand All @@ -284,4 +286,4 @@
</Style.Resources>
</Style>

</ResourceDictionary>
</ResourceDictionary>