Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBret Johnson <bret.johnson@microsoft.com>2022-03-17 03:43:36 +0300
committerBret Johnson <bret.johnson@microsoft.com>2022-03-17 03:43:36 +0300
commit2a3b982e04503909c7b259bd8ddf14e5a6386fb9 (patch)
tree4e296de7e87a97b4cb25b79aef0b40479d58d08d
parent6359edaa5c81a0d1697a1ad36807b74388f8ebb2 (diff)
Make tab order cycle for proppy controls
Now hitting the Tab key in the last control in the property editor changes focus to the search control at the top, cycling around. And Shift-Tab in search moves to the last control. Fixes AB#1491221
-rw-r--r--Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml b/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
index b241d47..55669b8 100644
--- a/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
+++ b/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
@@ -204,7 +204,7 @@
</Grid>
</Border>
- <Grid Name="propertiesPane" Grid.Row="1">
+ <Grid Name="propertiesPane" Grid.Row="1" KeyboardNavigation.TabNavigation="Cycle">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />