View Issue Details

IDProjectCategoryView StatusLast Update
0001719NoesisGUIC++ SDKpublic2020-06-10 19:01
Reportersfernandez Assigned Tosfernandez  
PrioritynormalSeverityminor 
Status resolvedResolutionfixed 
Product Version3.0.1 
Target Version3.0.2Fixed in Version3.0.2 
Summary0001719: Can't move focus to ItemsControl items using arrows
Description

Having a ScrollViewer which contains an ItemsControl, trying to move the focus on the control that defines each item to select it is not working.

The following xaml reproduces the issue:

<Grid
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid.Resources>
<GradientStopCollection x:Key="list">
<GradientStop Offset="0" Color="Red"/>
<GradientStop Offset="1" Color="Green"/>
<GradientStop Offset="2" Color="Blue"/>
</GradientStopCollection>
<DataTemplate x:Key="entry">
<Button Content="{Binding Offset}" Margin="0,10"/>
</DataTemplate>
</Grid.Resources>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" KeyboardNavigation.DirectionalNavigation="Contained">
<Button Content="Before" Margin="0,10"/>
<ScrollViewer Width="200" Height="200">
<ItemsControl ItemsSource="{StaticResource list}" ItemTemplate="{StaticResource entry}"/>
</ScrollViewer>
<Button Content="After" Margin="0,10"/>
</StackPanel>
</Grid>

PlatformAny

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2020-06-10 18:30 sfernandez New Issue
2020-06-10 18:30 sfernandez Assigned To => sfernandez
2020-06-10 18:30 sfernandez Status new => assigned
2020-06-10 18:30 sfernandez Target Version => 3.0.2
2020-06-10 19:01 sfernandez Status assigned => resolved
2020-06-10 19:01 sfernandez Resolution open => fixed
2020-06-10 19:01 sfernandez Fixed in Version => 3.0.2