Add a ContentBadge control

This commit is contained in:
TheXamlGuy
2024-07-16 20:22:37 +01:00
parent fd840895c2
commit 9adc3c2975
4 changed files with 115 additions and 8 deletions
@@ -84,16 +84,10 @@ public class Overflow :
base.OnApplyTemplate(args);
primaryListBox = args.NameScope.Get<ListBox>("PrimaryListBox");
if (primaryListBox is not null)
{
primaryListBox.SetValue(ItemsControl.ItemsSourceProperty, primaryCollection);
}
primaryListBox?.SetValue(ItemsControl.ItemsSourceProperty, primaryCollection);
secondaryListBox = args.NameScope.Get<ListBox>("SecondaryListBox");
if (secondaryListBox is not null)
{
secondaryListBox.SetValue(ItemsControl.ItemsSourceProperty, secondaryCollection);
}
secondaryListBox?.SetValue(ItemsControl.ItemsSourceProperty, secondaryCollection);
InitializeCollections();
UpdateOverflow();