// adds the names of the bugs to a list, for the labels (picture section) private async Task ForBugPics(int bugID) { var bug = await BugProcessor.LoadBug(bugID); bugNames.Add(bug.NameEn); }
// puts the bug names into the scroll block text private async Task PullBug(int bugID) { var bug = await BugProcessor.LoadBug(bugID); bugBlock.Content += $"\n {bug.NameEn.ToUpper()} "; }