From 5bfc1111dd65e856d88795486a9a903c496560a9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 13:48:10 +0000 Subject: [PATCH 1/2] Initial plan From 0f149587e5fbd17a9ce3886a3d9060d134c0e902 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 13:49:36 +0000 Subject: [PATCH 2/2] Fix non-existent asset path in JumpListPage.xaml code samples Co-authored-by: niels9001 <9866362+niels9001@users.noreply.github.com> --- WinUIGallery/Samples/ControlPages/JumpListPage.xaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WinUIGallery/Samples/ControlPages/JumpListPage.xaml b/WinUIGallery/Samples/ControlPages/JumpListPage.xaml index 7a7b66054..b97841f2d 100644 --- a/WinUIGallery/Samples/ControlPages/JumpListPage.xaml +++ b/WinUIGallery/Samples/ControlPages/JumpListPage.xaml @@ -35,7 +35,7 @@ var jumpList = await JumpList.LoadCurrentAsync(); var task = JumpListItem.CreateWithArguments("/compose", "New Message"); task.Description = "Compose a new message"; -task.Logo = new Uri("ms-appx:///Assets/Square44x44Logo.scale-200.png"); +task.Logo = new Uri("ms-appx:///Assets/Tiles/AppList.targetsize-48.png"); jumpList.Items.Add(task); await jumpList.SaveAsync(); @@ -57,7 +57,7 @@ var jumpList = await JumpList.LoadCurrentAsync(); var item = JumpListItem.CreateWithArguments("/project-alpha", "Project Alpha"); item.GroupName = "Projects"; item.Description = "Open Project Alpha"; -item.Logo = new Uri("ms-appx:///Assets/Square44x44Logo.scale-200.png"); +item.Logo = new Uri("ms-appx:///Assets/Tiles/AppList.targetsize-48.png"); jumpList.Items.Add(item); await jumpList.SaveAsync();