WinUI3XamlPreview 0.6.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package WinUI3XamlPreview --version 0.6.0
NuGet\Install-Package WinUI3XamlPreview -Version 0.6.0
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.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinUI3XamlPreview --version 0.6.0
#r "nuget: WinUI3XamlPreview, 0.6.0"
#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.6.0

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

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! 😄

Features

  • Interactive preview of your XAML code (powered by XamlReader)
  • Integration with VS2022 17.9+
  • Reload via opening/saving/switching
  • Supports your own user control and custom control
  • Supports controls in dependency (i.e. libraries)

Custom control's template previewing is not supported yet but is planned. Stay tuned.

Language/Feature Support Table

App WinRT Component (Dynamic) WinRT Component (Static)
C++ ✔️ ✔️
C# ✔️ ❌ (blocked by cswinrt)

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 Limitation

The previewer tries its best to resolve your WinRT component's dynamic project 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.

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

  1. Install the VS extension. Require VS2022 17.9+

  2. On each of your WinUI 3 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.

Note that the next steps for app project and WinRT component project are different.

App Project

  1. 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:

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

   <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.

WinRT Component Project

  1. 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 project.

Usage

  1. After setup, build your project again.
  2. For packaged app, deploy your app once by righting click on the project → deploy.
  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

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