From af3164602142771363506099ac2c6725951eafe8 Mon Sep 17 00:00:00 2001 From: MarkDHarper <48454923+MarkDHarper@users.noreply.github.com> Date: Wed, 7 Oct 2020 09:43:56 -0700 Subject: [PATCH] Making the custom combo-box IsTabStop="False" As there is no keyboard action for the control as a whole, having it be a tabstop is confusing --- Sample Applications/CustomComboBox/MainWindow.xaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sample Applications/CustomComboBox/MainWindow.xaml b/Sample Applications/CustomComboBox/MainWindow.xaml index 498dcce7b..b5ce4fe79 100644 --- a/Sample Applications/CustomComboBox/MainWindow.xaml +++ b/Sample Applications/CustomComboBox/MainWindow.xaml @@ -19,7 +19,8 @@ HorizontalAlignment="Center" VerticalAlignment="Top" Style="{StaticResource DropListStyle}" ItemsSource="{Binding Movies}" Command="{Binding OnWatchNow}" - DisplayMemberPath="Title"/> + DisplayMemberPath="Title" + IsTabStop="False"/>