Nested ItemsRepeater issues
See original GitHub issueDescribe the bug When nesting ItemsRepeaters, a couple things… 1- When scrolling, primarily with the scrollbar thumb, the garbage collector runs almost constantly. I can’t tell if this occurs in WinUI since that mostly lives in native memory
2- When scrolling, especially large jumps quickly, the scrollviewer will freeze. Resizing a parent container (like the window) will fix it. I think this is related to the items of different height issue, but I haven’t seen any reports of freezing yet. I also can’t replicate this in WinUI, I can get choppy scrolling but it never fully freezes. Sometimes it takes aggressive scrolling to cause this (like in the video I attached), and sometimes one large quick scroll will do it.
(see attached video for demo of 1 & 2)
3- There may or may not be a memory leak. I do think this also occurs upstream in WinUI, as process memory slowly climbs when scrolling. When first loaded, 10 ListBoxItems are present Scroll up and down the list once: 179 ListBoxItems are present Scroll randomly: 301 Scrolling some more: 438
To Reproduce Example code: Group installed fonts alphabetically and display using nested ItemsRepeaters
public class ViewModel
{
public ViewModel()
{
Items = new List<string>(FontManager.Current.GetInstalledFontFamilyNames());
var query = from item in Items
group item by item.Substring(0, 1).ToUpper() into g
orderby g.Key
select new GroupInfo(g) { Key = g.Key };
Groups = new List<GroupInfo>(query);
}
public List<string> Items { get; }
public List<GroupInfo> Groups { get; }
}
public class GroupInfo : List<string>
{
public string Key { get; set; }
public GroupInfo(IEnumerable<string> items) : base(items) { }
}
Window Content:
<Panel>
<Border Width="350" Height="400"
BorderBrush="{DynamicResource SystemControlHighlightBaseLowBrush}"
BorderThickness="1">
<ScrollViewer HorizontalScrollBarVisibility="Disabled">
<ItemsRepeater Items="{Binding Groups}">
<ItemsRepeater.ItemTemplate>
<DataTemplate>
<StackPanel>
<Border Height="40">
<TextBlock Text="{Binding Key}"
VerticalAlignment="Center"
Margin="12 0"
FontWeight="Bold"/>
</Border>
<ItemsRepeater Items="{Binding}">
<ItemsRepeater.ItemTemplate>
<DataTemplate>
<ListBoxItem Height="40" Content="{Binding}" />
</DataTemplate>
</ItemsRepeater.ItemTemplate>
</ItemsRepeater>
</StackPanel>
</DataTemplate>
</ItemsRepeater.ItemTemplate>
</ItemsRepeater>
</ScrollViewer>
</Border>
</Panel>
Expected behavior A clear and concise description of what you expected to happen.
Screenshots https://user-images.githubusercontent.com/40413319/111887602-0ebf6c00-89a4-11eb-80c9-889c42d62ce5.mp4
Desktop (please complete the following information):
- OS: Windows 10
- Version 0.10
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)

Top Related StackOverflow Question
The WinUI test app has an example of vertical stack within vertical stack, and the NavigationView also uses this for hierarchical items (tho virtualization is disabled in the NavView for some unrelated bug)
Nesting ItemsRepeater MUST be supported for future “ItemsRepeater as ItemsPresenter” Avalonia plans. Nesting arbitrary controls is also a pretty fundamental XAML concept.
That said, I’ve seen nothing but issues with the edge cases using ItemsRepeater. I’m not even sure the fundamental design works in all theoretical edge cases. However, it seems like it should and it came from some smart minds at Microsoft. I guess it just doesn’t have the mileage yet to have solved all the problems.