Ghost1372

everything can be handy

Welcome to WinUICommunity.Core

Experience WinUI 3 quickly and easily with the help of WinUICommunity, Everything you need to develop an application is gathered in one place.

Requirements

dotnet-require os-require IDE-require csharp-require

Download and Install

Nuget Github
WinUICommunity.Core Github

Github is generally updated every day and is relatively unsuitable for production.

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;

Install

1
Install-Package WinUICommunity.Core

After installing, add the following resource to app.xaml

1
<ResourceDictionary Source="ms-appx:///WinUICommunity.Components/Themes/Generic.xaml"/>

See the Demo app to see how to use it

Compile source code

Please confirm that your development environment meets the requirements before compiling.

  • Visual Studio 2022
    On the Workloads tab of the installation dialog box, select as appropriate:
    • select .NET Desktop Development
    • select Windows App SDK C# Templates (at the bottom of the list).
    • On the Individual components tab of the installation dialog box, in the SDKs, libraries, and frameworks section, make sure Windows 10 SDK (10.0.19041.0) (or 22000, 22621) is selected.
  • .Net 5.x, 6.x, 7.x and 8.x

Open *.sln and Build.

See the Demo app to see how to use it

0%