Ghost1372

everything can be handy

WinUICommunity.LandingPages

Create a landings page in the style of WinUI 3 and WinUI-Gallery very quickly and easily

1
Install-Package WinUICommunity.LandingPages

After installing, add the following resource to app.xaml

1
2
3
4
xmlns:wuc="using:WinUICommunity"

<ResourceDictionary Source="ms-appx:///WinUICommunity.LandingPages/Themes/Generic.xaml" />
<wuc:ItemTemplates/>

See the Demo app to see how to use it.

Dependencies

This package is based on the following packages

  • CommunityToolkit.WinUI.UI
  • CommunityToolkit.WinUI.UI.Animations
  • Microsoft.Graphics.Win2D

We moved all namespaces into a single namespace. No matter which (WinUICommunity) library you use, the namespace is always as follows
For use in the Xaml:
xmlns:wuc="using:WinUICommunity"
For use in the Csharp:
using WinUICommunity;

LandingsPage

0%