我有一个简单的列表框绑定到一个集合,它正确地显示了值,但是在单击该行时,它并不总是将选择更改为该行。必须多次点击,直到我改变到其他一行。还有其他人经历过这个吗?这是标记
<ListBox Grid.Row="1" x:Name="ctlClientLocations"
ItemsSource="{Binding ClientLocations}" ItemTemplate="{StaticResource LocationsListTemplate}"
SelectionMode="Single" SelectedItem="{Binding SelectedLocation, Mode=TwoWay}" SelectedValuePath="Key">
</ListBox>