-
Notifications
You must be signed in to change notification settings - Fork 133
Open
Description
Hi guys,
I'm trying to add SectionListItems programmatically, but, I'm struggling to add the DataTemplate with the ResponsiveGridView.
foreach (IGrouping<string, MockUp> group in model.FakeItems)
{
string header = group.Key;
List<MockUp> items = group.ToList();
SectionList sectionList = SectionsListControl;
sectionList.Sections.Add(new SectionListItem()
{
Name = header,
Title = header,
Margin = new Thickness(12, 12, 0, 0)
});
SectionListItem section = sectionList.Sections.Find(x => x.Name == header);
// the code below works
section.Title = $"{header} > something else";
// how can I dinammically load the DataTemplate?
}
Thanks,
Camilo
Metadata
Metadata
Assignees
Labels
No labels