Hello Simon,
Thank you for the additional information.
Regards,
Martin Ivanov
Progress Telerik
Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive, special prizes, and more, for FREE?! Register now for DevReach 2.0(20).
Hi everyone,
Martin reported this feature request as a follow-up to our conversation in the forums. I just wanted to add a small repro case. Scrolling works fine as long as you don't hover the AutocompleteBox but stops working as soon as you hover it.
<Window x:Class="TelerikAutoCompleteBoxScroll.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <ScrollViewer> <Grid> <telerik:RadAutoCompleteBox HorizontalAlignment="Stretch" VerticalAlignment="Top" Margin="0 100 0 5000" /> </Grid> </ScrollViewer> </Window>