WinUI3XamlPreview 0.8.2

dotnet add package WinUI3XamlPreview --version 0.8.2
NuGet\Install-Package WinUI3XamlPreview -Version 0.8.2
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="WinUI3XamlPreview" Version="0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinUI3XamlPreview --version 0.8.2
#r "nuget: WinUI3XamlPreview, 0.8.2"
#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 WinUI3XamlPreview as a Cake Addin
#addin nuget:?package=WinUI3XamlPreview&version=0.8.2

// Install WinUI3XamlPreview as a Cake Tool
#tool nuget:?package=WinUI3XamlPreview&version=0.8.2

WinUI 3 Xaml Preview (WinUI3XP)

nuget VS2022 CI

Image showcasing how to use WinUI 3 Xaml Preview

WinUI3 Xaml Preview allows you to see a a live preview of your UI while authoring XAML. It is fast, reliable, and comes with basic tools like scaling and size configuration.

Contributions are welcome! 😄

Feature

  • Interactive preview of your XAML code (powered by XamlReader)
  • Integration with VS2022 17.9+
  • Reload via opening/saving/switching
  • Supports packaged (single project, or with WAP project) or unpackaged app
  • Supports your own user control and custom control
  • Supports controls in dependency (i.e. libraries)
  • Supports control template previewing with control+style dropdown
  • Supports DLL project (directly, or with a separate Sample App project)

Feature/Language Support Table

C++ C#
App ✔️ ✔️
App packaged with WAP project ✔️ ✔️
Dynamic WinRT Component (via separate Sample App project*) ✔️ ✔️
Static WinRT Component (via separate Sample App project*) ✔️ ✔️
Dynamic WinRT Component (Direct*) ✔️ ❌ (blocked by cswinrt)
Static WinRT Component (Direct*)

*See section below on Direct vs Sample App

Packaged App with WAP (Windows Application Package) project Support

The VS2022 extension would automatically find the WAP project that packages your app. If you have multiple WAP packages packaging the same app, the behavior is undefined. In this scenario, it's recommended you use the WinUI3XPLaunchProject property to specify which project to launch. See Configuration section for more details.

WinRT Component Support - Direct Mode and Sample App Mode

WinRT Component preview support comes in two mode. One is "Direct" mode, another is "Sample App" mode. Direct mode means you can preview directly in-project. Sample App mode means you preview via a separate "Sample App" project.

It's suggested you use Sample App mode for reliability, however Direct mode is also supported for a quicker setup.

Limitation

  • Require building the project once before use
  • Packaged apps require being deployed before use
  • App project require a few lines of setup
  • WinRT component project require some setup for any nuget/external dependencies

WinRT Component Direct Mode's Limitation

The previewer tries its best to resolve your WinRT component's dynamic project, or internal dependency and load them before use. This feature is known as Auto DLL Loading. Auto DLL Loading only works for project references whose output is a dynamic library.

If your WinRT component has any external dynamic dependencies, e.g. nuget/external dll dependencies (transitive or direct), you'd need to copy them to your dll's output folder so the system can pick them up.

If your library has a complex dependency graph, it is suggested that you switch to Sample App mode.

Non-Goal

The author does not believe in Designer so this project would stay only as a live preview. If you want a designer, fork this project and create your own.

Getting Started

App Project

  1. Install the VS extension. Require VS2022 17.9+

  2. On your WinUI 3 App project that uses this feature, install the nuget

nuget install WinUI3XamlPreview
  1. If you are using C++, add <winrt/WinUI3XamlPreview.h to pch.h. C# users can go to the next step.

  2. Make changes to the start of your App.OnLaunched method accoridng to the following diff:

C++
- void App::OnLaunched([[maybe_unused]] LaunchActivatedEventArgs const& e)
+ winrt::fire_and_forget App::OnLaunched([[maybe_unused]] LaunchActivatedEventArgs const& e)
+ {
+     if (co_await WinUI3XamlPreview::Preview::IsXamlPreviewLaunched())
+     {
+         co_return;
+     }
      // Your code...

C#
- protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
+ protected override async void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
+ {
+     if (await WinUI3XamlPreview.Preview.IsXamlPreviewLaunched())
+     {
+         return;
+     }
      // Your code...
  1. If you are developing non-packaged app, you have finished the setup. If you are developing packaged app, make changes to your package manifest according to the following diff:
   <Applications>
     <Application>
+      <Extensions>
+        <uap5:Extension
+          Category="windows.appExecutionAlias">
+          <uap5:AppExecutionAlias>
+            <uap5:ExecutionAlias Alias="$YourTargetName-WinUI3XP.exe" />
+          </uap5:AppExecutionAlias>
+        </uap5:Extension>
+      </Extensions>
     </Application>
   </Applications>

Make sure to replace $YourTargetName with your build output name. E.g. if your build output is MyApp.exe, the correction execution alias to add is MyApp-WinUI3XP.exe.

  1. Viola! You have finished the setup for app project

WinRT Component Project (Sample App Mode)

  1. Install the VS extension. Require VS2022 17.9+

  2. On your WinUI 3 WinRT Component's Sample App project that uses this feature, install the nuget

nuget install WinUI3XamlPreview
  1. If you are using C++, add <winrt/WinUI3XamlPreview.h to pch.h of your Sample App Project. C# users can go to the next step.

  2. On your WinUI 3 WinRT Component project, add <WinUI3XPLaunchProject>$SampleAppProjectName</WinUI3XPLaunchProject> property. Make sure you replace $SampleAppProjectName with the name of the sample app project. E.g. if your WinRT Component's project name is Lib, your sample app (test app)'s project name is LibTest, the correct property value is LibTest. If you do not want to edit project file directly, you can (1) install the nuget on your WinUI 3 WinRT Component project, (2) edit the property by right clicking the component project in Visual Studio → Properties → WinUI3XamlPreview tab → edit Launch Project. Make sure you disable the preview to save compile time. See Configuration section for more details

  3. Viola! You have finished the setup for WinRT Component proejct Sample App mode.

WinRT Component Project (Direct Mode)

  1. Install the VS extension. Require VS2022 17.9+

  2. On your WinUI 3 WinRT Component project that uses this feature, install the nuget

nuget install WinUI3XamlPreview
  1. If you are using C++, add <winrt/WinUI3XamlPreview.h to pch.h. C# users can go to the next step.

  2. If your project has no dependency/only project-reference dependencies, you have finished the setup. If you have any dynamic nuget/external dependencies, make sure they are copied to the output folder.

For example, suppose your project is LibA inside Lib folder with Lib.sln. With default output directory settings, you should copy any dll dependencies to Lib\x64\Debug\LibA if you want to preview LibA in x64|Debug configuration.

  1. Viola! You have finished the setup for WinRT Component proejct Direct mode.

Usage

  1. After setup, build your project again.
  2. For packaged app, deploy your app once by righting click on the project → deploy. If you are using WinRT Component Sample App mode, make sure you build/deploy your sample app project instead of just the component project.
  3. Locate the "Toggle WinUI 3 Xaml Preview" in the "Extensions" menu at the top.
  4. Open any xaml file and click the toggle to launch preview, click it again to stop. You can also close the preview window to turn off live preview.

The preview renders according to the following triggers:

  • Opening a XAML file
  • Switching to a XAML file in the editor
  • Saving a XAML file

Configuration

WinUI3XamlPreview's property page in Visual Studio

You can configure the behavior of WinUI3XamlPreview via a dedicated property page in Visual Studio. If you are comfortable editing project file directly, you can also insert/modify properties listed below.

MSBuild Property type Behavior
WinUI3XPEnabled Bool true to enable WinUI3XamlPreview, false to disable. Default is true. When it's disabled, no winmd/dll are added to the project. Useful for CI/CD
WinUI3XPLaunchProject String Default is null. If specified, instead of using the XAML file's project to locate the preview app, use the specified project instead

Technical Details

TODO

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

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.8.2 97 4/23/2024
0.8.1 78 4/21/2024
0.8.0 87 4/20/2024
0.7.0 84 4/20/2024
0.6.0 107 4/13/2024
0.5.0 67 4/12/2024
0.4.0 70 4/11/2024
0.3.0 63 4/10/2024
0.2.0 71 3/29/2024
0.1.0 76 3/27/2024