WinUI3Utilities 1.1.6.7

dotnet add package WinUI3Utilities --version 1.1.6.7
NuGet\Install-Package WinUI3Utilities -Version 1.1.6.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WinUI3Utilities" Version="1.1.6.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinUI3Utilities --version 1.1.6.7
#r "nuget: WinUI3Utilities, 1.1.6.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WinUI3Utilities as a Cake Addin
#addin nuget:?package=WinUI3Utilities&version=1.1.6.7

// Install WinUI3Utilities as a Cake Tool
#tool nuget:?package=WinUI3Utilities&version=1.1.6.7

WinUI3Utilities

Useful template methods for WinUI3 projects

Build

.NET Windows

Usage

The following is the general usage. For more details, see the XAML docs of the corresponding attributes.

Available APIs

Helpers
Helpers Usage
AppHelper Helper for Application
WindowHelper Get and set properties of Window
WindowSizeHelper Limit the size of the window (works with WindowSizeHelperAttribute)
DragMoveAndResizeHelper Apply drag-move and resize function to (UIElement)RootPanel
DragZoneHelper Reduce repetitive operations when using InputNonClientPointerSource
TitleBarHelper Set title bar
TeachingTipHelper Helper for TeachingTip
ContentDialogHelper Helper for ContentDialog
Misc Miscellaneous extension methods
ThrowHelper Throw helper
Attributes (Generators)
Attributes Usage
DependencyPropertyAttribute Generate a dependency property
LocalizedStringResourcesAttribute Generate for all the .resw and .resjson files in PRIResource under the specified namespace
SettingsViewModelAttribute* Generate property according to the properties of the settings class T for the specified viewmodel class
GenerateConstructorAttribute* Generate constructor like record for the specified type, according to the properties of it
AppContextAttribute* Generate field _containerConfiguration and methods Initialize/Load/SaveConfiguration for the specified class
WindowSizeHelperAttribute Generate helper properties to limit the window size (works with WindowSizeHelper)
AttributeIgnoreAttribute Ignores the effect of the specified attributes on this target
DisableSourceGeneratorAttribute Indicates that the source generator is disabled. This is usually used for debug purpose
  • Asterisk ("*") or boldness indicates that the attribute supports AttributeIgnoreAttribute

Settings Persistence

Only for packaged applications.

AppContext.cs:

using Windows.Storage;
using WinUI3Utilities.Attributes;

namespace Sample;

[AppContext<AppConfig>]
public static partial class AppContext
{
    public static string AppLocalFolder { get; private set; } = null!;

    public static void Initialize()
    {
        AppLocalFolder = ApplicationData.Current.LocalFolder.Path;
        InitializeConfiguration();
        AppConfig = LoadConfiguration() is not { } appConfigurations
            ? new() : appConfigurations;
    }

    public static void SetDefaultAppConfig() => AppConfig = new();

    public static AppConfig AppConfig { get; private set; } = null!;
}

AppConfig.cs:

using WinUI3Utilities.Attributes;

namespace Sample;

[GenerateConstructor]
public partial record AppConfig
{
    public int WindowWidth { get; set; } = 1280;
    public int WindowHeight { get; set; } = 720;
    ...
}

When saving configuration, you can use the following code:

AppContext.SaveConfiguration(AppContext.AppConfig)

Localization (Reference)

Generate for all the .resw and .resjson files in PRIResource under the specified namespace.

Sample.csproj

<Project Sdk="Microsoft.NET.Sdk">
    ... 
    <PropertyGroup>
        <EnableDefaultPriItems>false</EnableDefaultPriItems>
    </PropertyGroup>
    <Target Name="InjectAdditionalFiles" BeforeTargets="GenerateMSBuildEditorConfigFileShouldRun">
        <ItemGroup>
            <AdditionalFiles Include="@(PRIResource)" SourceItemGroup="PRIResource" />
        </ItemGroup>
    </Target>
    <ItemGroup>
        <CompilerVisibleItemMetadata Include="AdditionalFiles" MetadataName="SourceItemGroup" />
    </ItemGroup>
    ...
    <ItemGroup>
        <PRIResource Include="**\*.resw" />
        <PRIResource Include="**\*.resjson" />
    </ItemGroup>
    ...
</Project>

AssemblyInfo.cs:

[assembly: LocalizedStringResources(nameof(Sample))]

XXX\APage.resw: ...

XXX\BWindow.resjson: ...

NuGet GitHub

Contact Me

Poker

License

MIT License

Product Compatible and additional computed target framework versions.
.NET net8.0-windows10.0.22621 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on WinUI3Utilities:

Repository Stars
Pixeval/Pixeval
Wow. Yet another Pixiv client!
Version Downloads Last updated
1.1.6.7 86 4/8/2024
1.1.6.3 106 3/30/2024
1.1.6.2 1,417 3/2/2024
1.1.6.1 1,169 2/13/2024
1.1.5.9 246 2/7/2024
1.1.5.8 570 1/22/2024
1.1.5.3 816 12/30/2023
1.1.5 124 12/29/2023
1.1.4.5 371 12/20/2023
1.1.4.3 2,203 7/4/2023
1.1.4 142 6/29/2023
1.1.3.2 174 6/18/2023
1.1.3 209 4/14/2023
1.1.2 170 4/12/2023
1.1.1.1 196 4/9/2023
1.1.1 190 4/8/2023
1.1.0 214 4/2/2023
1.0.13 273 3/11/2023
1.0.12.1 231 3/8/2023
1.0.12 228 3/7/2023
1.0.11.1 250 3/2/2023
1.0.11 255 3/1/2023
1.0.10 270 2/22/2023
1.0.9 446 1/23/2023
1.0.8 352 1/17/2023
1.0.7 309 1/16/2023
1.0.6 354 1/5/2023
1.0.5.1 332 1/4/2023
1.0.5 320 1/3/2023
1.0.4 361 1/1/2023
1.0.3 312 1/1/2023
1.0.2 300 12/31/2022
1.0.1 297 12/31/2022
1.0.0 302 12/31/2022